GitHub PR Comments MCP Server

by shaileshahuja
Verified

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Fetches GitHub Pull Request comments with file paths, line ranges, and replies using GitHub API, providing a structured JSON format of the comments for analysis

GitHub PR コメント MCP サーバー

これは、GitHub 個人アクセス トークンを使用して GitHub Pull Request コメントを取得する Model Context Protocol (MCP) サーバーです。

特徴

  • ファイルパス、行範囲、返信を含むPRコメントを取得します
  • Octokit経由でGitHub APIを使用する
  • StdioServerTransportを使用してMCPサーバーを実装します
  • 構造化されたJSON形式でコメントを返します

インストール

Smithery経由でインストール

Smithery経由で Claude Desktop 用の github-pr-mcp を自動的にインストールするには:

npx -y @smithery/cli install github-pr-mcp --client claude

手動でインストールする

  1. リポジトリをクローンする
  2. 依存関係をインストールします:
    npm install
  3. GitHub トークンを使用して.envファイルを作成します。
    GITHUB_TOKEN=your_github_token_here

使用法

  1. プロジェクトをビルドします。
    npm run build
  2. サーバーを実行します。
    npm start
    または、GitHub トークンを使用して直接:
    node dist/server.js your_github_token_here
  3. サーバーは、次のパラメータを受け入れるget_pr_commentsというツールを公開します。
    • owner : リポジトリの所有者(ユーザー名または組織)
    • repo : リポジトリ名
    • pull_number : プルリクエスト番号

カーソルとの統合

Cursor と統合するには、Cursor の MCP サーバー構成で次のコマンドを使用します。

node /path/to/dist/server.js your_github_token_here

/path/toプロジェクトへの実際のパスに置き換え、 your_github_token_here GitHub 個人アクセス トークンに置き換えます。

テスト

サーバー機能を検証するためのテスト クライアントが含まれています。

  1. プロジェクトをビルドします。
    npm run build
  2. テストクライアントを実行します。
    npm test

テスト クライアントはサーバーを起動し、サーバーに接続し、サンプル パラメータを使用してget_pr_commentsツールを呼び出します。

応答フォーマット

サーバーは次の形式でコメントを返します。

{ "comments": [ { "id": 123456789, "path": "src/example.js", "body": "This is a comment on a specific line", "line": 42, "start_line": 40, "user": { "login": "username" }, "created_at": "2023-01-01T00:00:00Z", "replies": [ { "id": 987654321, "body": "This is a reply to the comment", "user": { "login": "another-username" }, "created_at": "2023-01-02T00:00:00Z" } ] } ] }

発達

サーバーを開発モードで実行するには:

npm run dev

ライセンス

ISC

-
security - not tested
A
license - permissive license
-
quality - not tested

GitHub 個人アクセス トークンを使用して、ファイル パス、行範囲、および返信を含む GitHub Pull Request コメントを取得する MCP サーバー。

  1. Features
    1. Installation
      1. Installing via Smithery
      2. Installing Manually
    2. Usage
      1. Integration with Cursor
        1. Testing
          1. Response Format
            1. Development
              1. License
                ID: 0q53dxgk5e