GitHub MCP Server

GitHub MCP Server

A Model Context Protocol server that exposes read-only GitHub tools to LLM clients, enabling browsing of open issues, pull requests, issue details, and recent repository activity via natural language.

Category
Visit Server

README

GitHub MCP Server

A small, working Model Context Protocol server that exposes read-only GitHub tools to an LLM client such as Claude Desktop. Built with the official mcp Python SDK (stdio transport) and direct GitHub REST calls via requests.

The design goal is a handful of tools that work end-to-end rather than a large stubbed-out surface: an LLM can browse a repo's open issues and PRs, drill into a specific issue's discussion, and summarize recent activity.

Tools

Tool What it returns
list_open_issues(repo, limit=10) Open issues with number, title, author, labels, URL
list_open_prs(repo, limit=10) Open PRs with the same fields plus source branch and draft status
get_issue(repo, issue_number) Full issue detail: body text plus up to 30 comments
search_repo_activity(repo, since_days=7) Recent commits, and issues/PRs opened or closed in the window

All tools take repo in owner/name form (e.g. python/cpython). GitHub API errors (bad repo names, 404s, rate limits, bad tokens) are caught and returned as a readable error message the model can act on, never a stack trace.

Setup

Requires Python 3.10+.

pip install -r requirements.txt

Optionally set a GitHub token — not required for public repos, but it raises the API rate limit from 60 to 5,000 requests/hour and enables private repos your token can see:

# PowerShell (current session)
$env:GITHUB_TOKEN = "ghp_your_token_here"

The token is only ever read from the environment — never hardcoded or written to disk.

Verify it works (before touching Claude Desktop)

Run the test script, which calls each tool function directly against a real public repo and also exercises the error paths:

python test_tools.py                        # defaults to modelcontextprotocol/python-sdk
python test_tools.py owner/some-other-repo  # or pick your own

You should see 6/6 checks passed.

Register in Claude Desktop

  1. Open the config file (create it if missing):

    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  2. Add the server under mcpServers, using absolute paths for both the Python interpreter and server.py:

{
  "mcpServers": {
    "github": {
      "command": "C:\\Users\\jeswi\\AppData\\Local\\Python\\pythoncore-3.14-64\\python.exe",
      "args": ["C:\\Users\\jeswi\\OneDrive\\Documents\\Resume Project\\Github-MCP\\server.py"],
      "env": {
        "GITHUB_TOKEN": "ghp_your_token_here"
      }
    }
  }
}

The env block is how Claude Desktop passes the token to the server process; omit it entirely for anonymous access to public repos.

Use the real interpreter path, not the Windows Store alias. (Get-Command python).Source often returns ...\WindowsApps\python.exe, which is a shim that fails when launched as a subprocess. Get the true path with:

python -c "import sys; print(sys.executable)"
  1. Fully quit and restart Claude Desktop (system tray → Quit, not just closing the window).

  2. Confirm the connection: in a new chat, the tools icon (below the message box) should list the four github tools.

Example prompts

Prompts that naturally trigger each tool:

  • "What are the open issues in modelcontextprotocol/python-sdk right now?"list_open_issues
  • "Are there any open pull requests in pallets/flask? Which ones are drafts?"list_open_prs
  • "Summarize the discussion on issue #3307 in modelcontextprotocol/python-sdk."get_issue
  • "How active has python/cpython been in the last two weeks? What got merged or closed?"search_repo_activity
  • "Look at recent activity in anthropics/anthropic-sdk-python and tell me if any of the newly opened issues look like duplicates of each other."search_repo_activity + get_issue

How it works

Claude Desktop ── stdio (JSON-RPC / MCP) ──> server.py ── HTTPS ──> api.github.com
  • server.py registers four plain Python functions as MCP tools; their docstrings become the tool descriptions the LLM reads when deciding what to call.
  • The server runs over stdio: Claude Desktop launches it as a subprocess and speaks MCP over stdin/stdout. No ports, no web server, no persistence.
  • Tool results are returned as structured JSON, so the model gets fields (number, author, labels, URL) rather than prose to parse.

Scope

Deliberately excluded: write operations (creating issues, commenting), OAuth flows, a web UI, and any database. This is a clean local demo of the MCP tool-serving pattern.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured