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"
}
}
}
}
}