Home/Servers/GitHub MCP Server

GitHub MCP Server

by Anthropic ยท โญ 3.5k stars ยท updated 2 months ago

Full GitHub integration โ€” manage repositories, issues, PRs, actions, and code. Search code, create issues, review PRs, and interact with the entire GitHub API through your AI.

92
Excellent

Quality Score Breakdown

maintenance94/100
community93/100
documentation91/100
compatibility90/100

Use Cases

  • โœ“manage repositories
  • โœ“create issues
  • โœ“review PRs
  • โœ“search code

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-github"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-github"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "github": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-github"
        ],
        "env": {
          "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers