MCP server

GitHub
MCPIssues, PRs, and the repo — official, from GitHub.
GitHub’s first-party MCP server. Remote or local. The tools match the API you already use.
latest·MIT·Updated this month·github.com/github/github-mcp-server·Transport: stdio
Claude CodeCursorVS CodeDesktop
ScannedActive
claude_desktop_config.json
{
"mcpServers": {
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "…"
}
}
}
}By GitHub
Spec
What the server actually exposes.
list_issues
readIssues in a repo.
create_issue
writeOpen an issue.
list_pull_requests
readPRs and their state.
create_pull_request
writeOpen a PR from a branch.
get_file_contents
readRead a path on a ref.
Guardrails
- Token scopes are yours
- Writes need a PAT that can write
- Remote option available
github-mcp.mcp/tools
Tools
- read
list_issues
Issues in a repo.
- write
create_issue
Open an issue.
- read
list_pull_requests
PRs and their state.
- write
create_pull_request
Open a PR from a branch.
- read
get_file_contents
Read a path on a ref.
Last call
{ "ok": true,
"tool": "list_issues",
"rows": 12 }Other servers worth installing
Discussion
No notes yet. Be the first hunter to report back.
