Skip to main content

A Model Context Protocol (MCP) connector for GitHub, for use with Claude.

Project description

GitHub MCP Connector

A Model Context Protocol (MCP) server that connects Claude to GitHub. It exposes 50+ GitHub REST API operations as MCP tools, so Claude (Desktop, Code, or any MCP client) can search and read repositories, files, and commit history; triage and comment on issues; review, open, and merge pull requests; drive CI (read logs, re-run, dispatch); inspect security alerts; and—optionally—make changes (open/merge PRs, submit reviews, manage labels/assignees, commit files, cut releases). Every write is gated by a single read-only switch.

It's a small, dependency-light Python package (mcp + httpx) that you point at a GitHub token. It supports both stdio (the default for Claude Desktop/Code) and streamable HTTP transports, and works against github.com or GitHub Enterprise Server.

Features

  • 🔍 Search & discover repositories, issues/PRs, and code — plus find reusable repos (across everything your token can see, license/activity-aware) for what you're building
  • 📦 Repositories — metadata, branches, file contents, directory listings, your repo list
  • 🧾 Commits — history, single-commit detail, and diffs between refs
  • 🐛 Issues — list, read, create, comment, read comments, edit/close, label, assign
  • 🔀 Pull requests — list, read, diffs/files, comments, open, update, merge, and review
  • ⚙️ Actions & releases — list runs/jobs, read failed-job logs, re-run/dispatch workflows, commit statuses & check runs, list/create releases
  • 🔐 Security — secret-scanning, code-scanning, and Dependabot alerts
  • 🔔 Notifications — list and mark read across all your repos
  • ✍️ Repo writes — create branches, commit files, manage labels/assignees, create gists (gated by read-only mode)
  • 🔒 Read-only mode — flip one env var to disable every write tool
  • 🏢 Enterprise-friendly — set GITHUB_API_URL for GitHub Enterprise Server

Tools

Tool Description Write
get_authenticated_user Identity/health check for the configured token
list_my_repositories List repos the token can access
search_repositories Search repositories by query
get_repository Repository metadata
get_repository_tree Recursive file tree at a ref
list_branches Branches with head commit SHAs
get_file_contents Read a file (decoded) or list a directory
list_commits Recent commits, optional branch/path filter
get_commit A single commit with stats and changed files
compare_commits Diff/ahead-behind between two refs
get_combined_status Combined commit status for a ref
list_check_runs Check runs for a ref
list_issues Issues by state/labels
get_issue A single issue with full body
list_issue_comments Conversation comments on an issue/PR
list_pull_requests Pull requests by state
get_pull_request A single PR with body and merge status
get_pull_request_diff Unified diff for a PR (truncated)
list_pull_request_files Files changed in a PR
list_pull_request_reviews Reviews submitted on a PR
list_pull_request_review_comments Inline code-review comments on a PR
list_workflow_runs Recent GitHub Actions runs
list_workflow_run_jobs Jobs in a run (flags failed steps)
get_job_logs Plain-text logs for a job (tail)
list_releases Releases for a repository
list_notifications Your notifications across all repos
list_secret_scanning_alerts Secret-scanning alerts (no secret values)
list_code_scanning_alerts Code-scanning (CodeQL) alerts
list_dependabot_alerts Dependabot vulnerability alerts
search_issues Search issues and PRs across GitHub
search_code Search code across GitHub
find_reusable_repositories Find reusable repos for what you're building (license/activity-aware; public + accessible private)
create_pull_request Open a new pull request (supports draft)
update_pull_request Edit title/body/base, close/reopen a PR
merge_pull_request Merge a PR (merge/squash/rebase)
submit_pull_request_review Approve / request changes / comment
add_pull_request_review_comment Inline comment on a PR diff line
rerun_workflow_run Re-run a workflow run (or just failed jobs)
trigger_workflow Dispatch a workflow_dispatch run
create_release Create a release (and its tag)
create_issue Open a new issue
update_issue Edit/close/reopen an issue
add_issue_comment Comment on an issue or PR
add_labels Add labels to an issue/PR
remove_label Remove a label from an issue/PR
add_assignees Assign users to an issue/PR
mark_notification_read Mark a notification thread read
create_branch Create a branch from a ref
delete_branch Delete a branch
create_or_update_file Commit a file (create or update)
create_gist Create a (secret or public) gist

Tools marked Write are disabled when GITHUB_MCP_READ_ONLY is set.

Requirements

  • Python 3.10+
  • A GitHub personal access token. The connector applies no repository restrictions of its own — it can reach exactly the repositories your token can, so token scope is what controls access:
    • All your repositories (recommended for general use): create a classic PAT with the repo scope, or a fine-grained PAT whose "Repository access" is set to All repositories. This lets the connector see every repo your account can access (public and private).
    • Only specific repositories: use a fine-grained PAT and select just those repos under "Repository access".
    • Permissions: read access is enough for the read tools. The write tools need scopes matching what they touch — for a classic PAT the repo scope covers most (issues, PRs, reviews, labels, assignees, branches, files, releases, statuses), workflow is required for trigger_workflow / rerun_workflow_run, and gist for create_gist. Fine-grained tokens need the corresponding per-resource "Read and write" permissions (Contents, Issues, Pull requests, Actions, etc.), and security-alert tools require the relevant code-scanning/Dependabot/secret-scanning alert read permissions.

Install from PyPI (recommended)

The connector is published to PyPI as github-mcp-connector, so you can install or run it by name — no clone, no git, no build step. This is the most reliable option on Windows, where launching from a git URL requires Git on the spawned process's PATH.

uvx github-mcp-connector            # run on demand with uv (nothing to install)
pipx run github-mcp-connector       # same, with pipx
pip install github-mcp-connector    # or install it permanently

Wire it into Claude by pointing the command at the published package:

Claude Code:

claude mcp add-json github '{
  "command": "uvx",
  "args": ["github-mcp-connector"],
  "env": { "GITHUB_TOKEN": "github_pat_your_token_here" }
}'

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "github": {
      "command": "uvx",
      "args": ["github-mcp-connector"],
      "env": { "GITHUB_TOKEN": "github_pat_your_token_here" }
    }
  }
}

On Windows, use the full path to uvx.exe (run where.exe uvx to find it), e.g. C:\\Users\\you\\.local\\bin\\uvx.exe.

Quick start (no clone, no venv)

If the package isn't published yet (or you want to track an unreleased commit), uvx can also fetch, build, and run the connector straight from GitHub. This path requires Git to be available to the process that launches it.

Claude Code — one command:

claude mcp add-json github '{
  "command": "uvx",
  "args": ["--from", "git+https://github.com/winnerlose2026/Github-mcp.git", "github-mcp"],
  "env": { "GITHUB_TOKEN": "github_pat_your_token_here" }
}'

Add --scope user to make it available in every project. Verify with claude mcp list (should show github connected).

Claude Code — project-scoped, shareable: this repo ships a .mcp.json that reads GITHUB_TOKEN from your environment. Drop the same file in any project (or copy it from here), export your token, and Claude Code auto-detects it:

export GITHUB_TOKEN=github_pat_your_token_here
claude   # prompts once to approve the project MCP server

Claude Desktop: point the command at uvx so there's no interpreter path to manage:

{
  "mcpServers": {
    "github": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/winnerlose2026/Github-mcp.git", "github-mcp"],
      "env": { "GITHUB_TOKEN": "github_pat_your_token_here" }
    }
  }
}

Prefer pipx? pipx run --spec git+https://github.com/winnerlose2026/Github-mcp.git github-mcp works the same way; use that as the command/args instead.

Installation (from source)

For development, or if you don't use uv/pipx:

git clone https://github.com/winnerlose2026/Github-mcp.git
cd Github-mcp
python -m venv .venv && source .venv/bin/activate
pip install -e .

Or, without installing, from the repo root:

pip install -r requirements.txt
python -m github_mcp

Configuration

All configuration comes from environment variables (see .env.example):

Variable Required Default Description
GITHUB_TOKEN yes GitHub token. GITHUB_PERSONAL_ACCESS_TOKEN and GH_TOKEN are also accepted.
GITHUB_API_URL no https://api.github.com API root; set for GitHub Enterprise Server (e.g. https://ghe.example.com/api/v3).
GITHUB_MCP_READ_ONLY no false When truthy, disables all write tools.
GITHUB_MCP_TIMEOUT no 30 Per-request timeout in seconds.
GITHUB_MCP_USER_AGENT no github-mcp-connector User-Agent header sent to GitHub.

Connecting to Claude (from-source install)

If you installed from source (above) instead of using uvx/pipx, configure the client to run the package directly.

Claude Desktop

Add the server to claude_desktop_config.json (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "github": {
      "command": "python",
      "args": ["-m", "github_mcp"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

Use the absolute path to the Python interpreter from the virtualenv where you installed the package (e.g. /path/to/Github-mcp/.venv/bin/python), or the github-mcp console script directly. Restart Claude Desktop after editing.

Claude Code

claude mcp add github \
  --env GITHUB_TOKEN=ghp_your_token_here \
  -- python -m github_mcp

Streamable HTTP

To run as a standalone HTTP server instead of stdio:

GITHUB_TOKEN=ghp_your_token_here python -m github_mcp --http

Example prompts

Once connected, you can ask Claude things like:

  • "What's the open PR backlog on owner/repo?"
  • "Read README.md from the default branch of owner/repo and summarize it."
  • "Show me the diff for PR #42 and summarize the risky parts."
  • "Open an issue titled 'Flaky test in CI' with these reproduction steps…"

Development

pip install -e ".[dev]"
pytest

The test suite mocks the GitHub API with httpx.MockTransport, so it runs fully offline and makes no network calls.

Releasing (maintainers)

Publishing is automated via GitHub Actions (.github/workflows/publish.yml) using PyPI Trusted Publishing (OIDC) — no API tokens are stored anywhere.

One-time PyPI setup (before the first release):

  1. Sign in at pypi.org and go to Your projects → Publishing (or Account → Publishing for a project that doesn't exist yet).
  2. Add a pending publisher with:
    • PyPI Project Name: github-mcp-connector
    • Owner: winnerlose2026
    • Repository: Github-mcp
    • Workflow name: publish.yml
    • Environment name: pypi
  3. (Recommended) In the GitHub repo, create an Environment named pypi (Settings → Environments) so the publish job is gated.

Cutting a release:

  1. Bump version in pyproject.toml, commit, and merge to main.
  2. Tag and publish a GitHub Release (e.g. v0.1.0). Publishing the release triggers the workflow, which builds the sdist + wheel, runs twine check, and uploads to PyPI.
  3. Confirm it's live: uvx github-mcp-connector@latest --help.

Until the first release is published, install via the git-based quick start instead.

Security notes

  • The connector only has the access your token grants. A broad token (repo scope / all repositories) gives Claude reach across every repo your account can touch — convenient, but treat the token like the credential it is. Prefer a fine-grained, repo-limited token if you only need a few repositories.
  • Run with GITHUB_MCP_READ_ONLY=true when you only need read access; this is enforced server-side, before any write request is sent to GitHub. This pairs well with a broad-access token: full visibility, no write risk.
  • Never commit your token. .env is git-ignored; .env.example is the template to copy.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

github_mcp_connector-0.7.0.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

github_mcp_connector-0.7.0-py3-none-any.whl (23.9 kB view details)

Uploaded Python 3

File details

Details for the file github_mcp_connector-0.7.0.tar.gz.

File metadata

  • Download URL: github_mcp_connector-0.7.0.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for github_mcp_connector-0.7.0.tar.gz
Algorithm Hash digest
SHA256 9d9ab993f8c28b00483b61a9b62ca32a9e4bcb6d832188f5f1be74ae5337c8f5
MD5 8aab8910c837f28901afb5c0dca007b1
BLAKE2b-256 372bd038ae4cc6605330b1c7ed611dbb6a74d46d3dc3cf418db35ec9c2472063

See more details on using hashes here.

Provenance

The following attestation bundles were made for github_mcp_connector-0.7.0.tar.gz:

Publisher: publish.yml on winnerlose2026/Github-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file github_mcp_connector-0.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for github_mcp_connector-0.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 495e2d442f783c4cf8f3d1d72fd6d3e7594b57691834cffb863c381e26b27342
MD5 538da8a214123da5a402aa0c94a95361
BLAKE2b-256 b20aed6bfe6f7d194ee4d331a4d5c79d82a89e5429625b5d32fb56770e02b371

See more details on using hashes here.

Provenance

The following attestation bundles were made for github_mcp_connector-0.7.0-py3-none-any.whl:

Publisher: publish.yml on winnerlose2026/Github-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page