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

@eonhwakim/devlog-mcp

v0.1.2

Published

GitHub activity digest MCP server — weekly summary, annual report, collaboration score

Readme

@eonhwakim/devlog-mcp

GitHub 활동을 Claude가 분석해주는 MCP 서버

npm version


뭘 할 수 있나요?

Claude Desktop 채팅창에서 말로 물어보면 됩니다:

"지난 주 내 GitHub 활동 eonhwakim 계정으로 요약해줘"
"올해 성과 정리해서 연봉협상 자료 만들어줘"
"내 코드 점수 분석해줘"
"최근 6개월 기술 스택 변화 보여줘"

| 툴 | 설명 | |---|---| | get_weekly_summary | 지난 7일 커밋·PR·리뷰 활동 요약 | | get_annual_report | 연간 성과 정리 (연봉협상 모드) | | get_collaboration_score | PR 품질·커밋 가독성·리뷰 어조 점수 | | get_tech_stack_trend | 월별 기술 스택 변화 추이 |


어떻게 쓰나요?

1단계 — GitHub Token 발급

GitHub Settings → Developer settings → Tokens (classic)

  • Note: devlog-mcp
  • 권한: repo 체크, read:user 체크
  • Generate token → 토큰 복사 (다시 못 봄!)

2단계 — Claude Desktop 설정

~/Library/Application Support/Claude/claude_desktop_config.json 파일을 열어 아래 내용 추가:

{
  "mcpServers": {
    "devlog": {
      "command": "npx",
      "args": ["-y", "@eonhwakim/devlog-mcp"],
      "env": {
        "GITHUB_TOKEN": "여기에_토큰_입력"
      }
    }
  }
}

3단계 — Claude Desktop 재시작

Claude Desktop을 완전히 종료(Cmd+Q) 후 다시 실행하면 망치(🔨) 아이콘이 생깁니다.


안전한가요? (Privacy Shield)

Phase 1 MCP 서버는 로컬 환경에서만 실행됩니다.

내 컴퓨터
├── Claude Desktop
├── devlog-mcp (로컬 실행)
└── GitHub API (직접 통신)
    ↑
외부 서버 없음 — 코드가 밖으로 나가지 않음

회사 Private Repository를 분석해도 소스코드가 외부 서버로 전송되지 않습니다.


아키텍처

  • GitHub GraphQL v4 — 필요한 필드만 정확히 요청, over-fetching 없음
  • Data Compactor — PR diff 원문 제거, 토큰 비용 90% 절감
  • 정량/정성 분리 — 수치는 코드가, 해석은 Claude가 (LLM 환각 방지)

기여 / 이슈

GitHub Repository에서 이슈와 PR 환영합니다.