MCP.so
登录

GitHub PR Comments MCP Server

@shaileshahuja

关于 GitHub PR Comments MCP Server

MCP server that fetches GitHub Pull Request comments

基本信息

分类

版本控制

许可证

MIT

运行时

node

传输方式

stdio

发布者

shaileshahuja

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "github-pr-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@smithery/cli",
        "install",
        "github-pr-mcp",
        "--client",
        "claude"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is GitHub PR Comments MCP Server?

A Model Context Protocol server that fetches GitHub Pull Request comments using a GitHub personal access token. It is for developers who want to programmatically retrieve PR comments with file paths, line ranges, and replies.

How to use GitHub PR Comments MCP Server?

Clone the repository, install dependencies with npm install, create a .env file with a GITHUB_TOKEN, build with npm run build, and run with npm start or directly with node dist/server.js your_github_token_here. The server exposes a tool called get_pr_comments that accepts owner, repo, and pull_number parameters.

Key features of GitHub PR Comments MCP Server

  • Fetches PR comments with file paths, line ranges, and replies
  • Uses GitHub API via Octokit
  • Implements MCP server with StdioServerTransport
  • Returns comments in structured JSON format

Use cases of GitHub PR Comments MCP Server

  • Automating code review summarization by extracting PR comments and replies
  • Integrating PR comment data into custom workflows or dashboards
  • Programmatically analyzing PR feedback across repositories

FAQ from GitHub PR Comments MCP Server

What does this server do compared to alternatives?

It provides a simple MCP interface to fetch PR comments using a GitHub personal access token, returning structured JSON with file paths, line ranges, and threaded replies.

What dependencies or runtime requirements are needed?

Node.js, npm, and a GitHub personal access token stored in a .env file as GITHUB_TOKEN.

Where does data live?

All data is fetched live from the GitHub API; no local storage of comments.

What transport does the server use?

It uses StdioServerTransport (stdio transport) for MCP communication.

How is authentication handled?

Authentication requires a GitHub personal access token, provided via environment variable or command-line argument.

评论

版本控制 分类下的更多 MCP 服务器