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

@arbiter09/github-mcp

v1.0.0

Published

GitHub MCP tools for PR review agents — diff, file context, and comment posting

Downloads

28

Readme

@arbiter09/github-mcp

GitHub MCP tools for autonomous PR review agents. Exposes six tools over the Model Context Protocol (stdio transport) so any MCP-compatible client — Cursor, Claude Desktop, or a custom agent — can interact with GitHub pull requests without writing bespoke API glue code.

Quick Start — one command

npx -y @arbiter09/github-mcp

Set GITHUB_TOKEN in the environment first:

export GITHUB_TOKEN=ghp_your_token_here
npx -y @arbiter09/github-mcp

Cursor Setup

Add to your Cursor MCP config (~/.cursor/mcp.json or the workspace .cursor/mcp.json):

{
  "mcpServers": {
    "devmind-github": {
      "command": "npx",
      "args": ["-y", "@arbiter09/github-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

Claude Desktop Setup

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "devmind-github": {
      "command": "npx",
      "args": ["-y", "@arbiter09/github-mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

Tools

| Tool | Description | |------|-------------| | get_pr_metadata | Fetch PR title, author, labels, base branch, head SHA, and change stats | | get_pr_diff | Get the unified diff of all changed files | | list_changed_files | List changed files with status and line counts | | read_file | Read file content at a specific git ref (SHA or branch) | | get_file_history | Recent commits that touched a file | | post_review_comment | Post a markdown review comment to the PR |

Tool schemas

get_pr_metadata

{ "pr_number": 42, "repo": "owner/repo" }

get_pr_diff

{ "pr_number": 42, "repo": "owner/repo" }

list_changed_files

{ "pr_number": 42, "repo": "owner/repo" }

read_file

{ "path": "src/api/users.py", "repo": "owner/repo", "ref": "abc123sha" }

get_file_history

{ "path": "src/api/users.py", "repo": "owner/repo", "per_page": 10 }

post_review_comment

{
  "pr_number": 42,
  "repo": "owner/repo",
  "body": "## Review\n\nFound a SQL injection risk on line 12...",
  "event": "REQUEST_CHANGES"
}

GitHub Token Permissions

Generate a fine-grained token at GitHub → Settings → Developer settings → Personal access tokens → Fine-grained tokens.

Required permissions:

  • Contents — Read-only (for read_file, get_file_history)
  • Pull requests — Read and write (for all PR tools + post_review_comment)
  • Metadata — Read-only

MCP Registry

This server is listed on Smithery under @arbiter09/github-mcp.

Development

git clone https://github.com/Arbiter09/DevMind
cd DevMind/mcp-server
npm install
npm run build      # compile TypeScript → dist/
npm run dev        # watch mode
GITHUB_TOKEN=ghp_... node dist/index.js   # run locally

Publishing

npm login
npm publish --access public

License

MIT