GitHub Issues MCP Server

GitHub Issues MCP Server

Enables AI assistants to discover, filter, and triage GitHub issues across repositories, with tools for fetching issue details, listing issues by state/labels, and finding related pull requests.

Category
Visit Server

README

GitHub Issues MCP Server

An MCP (Model Context Protocol) server for discovering and triaging open-source GitHub issues — built by hand, connected to Claude Desktop, and used to find good-fit issues to contribute to (SGLang, vLLM, and beyond).

Features

  • fetch_issue(repo, issue_number) — Get details of a single issue: title, body, state, comments, labels, and whether it's a PR.
  • list_issues(repo, state, labels, sort, direction, include_prs) — Fetch and filter a repo's issues by state, labels, and sort order (up to 100 per call).
  • find_related_prs(repo, issue_number) — Checks an issue's timeline for linked pull requests, and reports whether any are open or merged.

Setup

  1. Install dependencies:

    pip install -r requirements.txt
    
  2. Create a .env file in the project root:

    GITHUB_TOKEN=your_personal_access_token
    

    Generate a token at GitHub → Settings → Developer settings → Personal access tokens (read-only, public_repo scope is enough).

  3. Test locally with the MCP inspector:

    mcp dev server.py
    

Connecting to Claude Desktop

Add the server to Claude Desktop's MCP config (Settings → Developer → Edit Config):

{
  "mcpServers": {
    "github-issues": {
      "command": "uv",
      "args": ["run", "--with", "mcp", "mcp", "run", "/absolute/path/to/server.py"]
    }
  }
}

Fully quit and reopen Claude Desktop. Once connected, you can ask things like:

"Find open good first issues in sgl-project/sglang"

and Claude will call the tools directly and return live results.

Project Structure

├── server.py                  # MCP server entry point, tool registration
├── github_client.py           # GitHub API wrapper (auth, requests, error handling)
├── tools/
│   ├── fetch_issue.py
│   ├── list_issues.py
│   └── find_related_prs.py
└── requirements.txt

Notes

  • Uses the GitHub REST API with a personal access token (free, 5,000 requests/hour authenticated).
  • Rate limiting and deep error handling are intentionally out of scope for this version — basic status code checks only (200 / 404 / 401 / other).
  • find_related_prs relies on the issue timeline endpoint's cross-referenced events; issues closed manually (without a linked PR) will correctly show no linked PR.

License

MIT

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