npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@kimduumin/harness-feed-mcp

v0.3.0

Published

MCP server providing structured tech feeds for harness subagent design

Readme

@kimduumin/harness-feed-mcp

npm version GitHub Repository License: MIT Node.js TypeScript

하네스(subagent) 설계와 관리에 참고할 최신 기술 피드를 구조화된 JSON으로 제공하는 MCP 서버입니다.

  • npx -y @kimduumin/harness-feed-mcp@latest로 stdio 실행
  • 별도 서버 배포 없이 tool 호출 시점에만 외부 소스에 HTTP 요청
  • GeekNews, Hacker News, arXiv, Lobste.rs, Dev.to, TLDR, Papers with Code, Reddit 등 8개 소스 지원

사용 예시

MCP client에서 다음과 같은 요청을 처리할 수 있습니다.

최근 GeekNews 기사 중에서 "kimi" 검색해줘
Hacker News top 스토리 10개 보여줘
arXiv에서 "RLHF" 관련 최신 논문 찾아줘
Lobste.rs에서 가장 핫한 글 5개 알려줘
r/LocalLLaMA 최신 글 보여줘

소스

| 소스 | 상태 | 설명 | | --- | --- | --- | | GeekNews | ✅ | 한국 개발/기술/스타트업 뉴스 큐레이션 | | Hacker News | ✅ | Y Combinator 기술 뉴스 커뮤니티 | | arXiv | ✅ | 논문 프리프린트 (cs.AI, cs.CL 등) | | Lobste.rs | ✅ | 초대제 기술 커뮤니티 | | Dev.to | ✅ | 개발자 커뮤니티, 태그 기반 큐레이션 | | TLDR | ✅ | 일일 기술 뉴스 요약 | | Papers with Code | ✅ | 논문 + 구현 코드 연동 | | Reddit | ✅ | 서브레딧 기반 큐레이션 (RSS, 점수·댓글수 미제공) |

제공 도구

| 소스 | 도구 | | --- | --- | | GeekNews | get_feed, get_recent_feed, search_feed, get_weekly, get_item | | Hacker News | get_hackernews, get_hackernews_recent, search_hackernews, get_hackernews_item | | arXiv | get_arxiv_recent, search_arxiv, get_arxiv_item | | Lobste.rs | get_lobsters, get_lobsters_recent, search_lobsters, get_lobsters_item | | Dev.to | get_devto_recent, search_devto, get_devto_item | | TLDR | get_tldr_recent, search_tldr, get_tldr_item | | Papers with Code | get_paperswithcode_recent, search_paperswithcode, get_paperswithcode_item | | Reddit | get_reddit, get_reddit_recent, search_reddit, get_reddit_item |

Repository

사전 요구사항

  • Node.js 18 이상
  • curl (Reddit 소스 전용) — Reddit이 Node의 fetch 요청을 봇으로 차단하므로 시스템 curl로 우회합니다. macOS·대부분의 Linux·Windows 10+ 에 기본 탑재되어 있습니다. Reddit 도구를 쓰지 않으면 불필요합니다.

설치

npx 사용 권장

별도 clone 없이 MCP client가 npx로 바로 실행할 수 있습니다.

npx -y @kimduumin/harness-feed-mcp@latest

이 명령은 MCP stdio server를 시작합니다. 정상 실행 시 터미널에 아무 출력 없이 대기할 수 있습니다.

소스에서 빌드

git clone [email protected]:doominkim/harness-feed-mcp.git
cd harness-feed-mcp
npm install
npm run build

MCP client 설정

OpenCode

~/.config/opencode/opencode.json에 추가:

{
  "mcp": {
    "harness-feed": {
      "type": "local",
      "command": ["npx", "-y", "@kimduumin/harness-feed-mcp@latest"],
      "enabled": true,
      "timeout": 60000
    }
  }
}

일반 MCP 설정 형태

{
  "mcpServers": {
    "harness-feed": {
      "command": "npx",
      "args": ["-y", "@kimduumin/harness-feed-mcp@latest"]
    }
  }
}

License

MIT