GitHub MCP Server
Provides tools for interacting with GitHub repositories, including retrieving repository summaries, searching issues and pull requests, keyword searching repository issues, and accessing repository details as a resource.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitHub MCP Serverwhat are the open issues for facebook/react?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GitHub MCP Server
MCP (Model Context Protocol) server exposing GitHub repository data as tools, a resource, and a prompt. Backed by GitHub's REST API via httpx.
Setup
Install deps:
uv syncCopy env template and fill in your token:
cp .env.example .envGenerate a token at https://github.com/settings/tokens (needs
reposcope for private repos, no scope needed for public read-only).
Related MCP server: AI Project Explorer
Run
Start the MCP server (stdio transport):
uv run python server.pyRun the sample client (spawns the server and calls a tool):
uv run python client.pyTools
Tool | Description |
| Repo summary — stars, forks, open issues, language |
| List issues (excludes PRs) |
| List pull requests |
| Keyword search over repo issues |
Resource
github://repo/{owner}/{repo} — repository details as text.
Prompt
review_repository(owner, repo) — generates a prompt to analyze repo health (issues, PRs, activity, risks).
Project layout
server.py— MCP server, all tools/resource/promptclient.py— sample MCP client exercising the server over stdiogithub_service.py,test_github.py— early prototype scratch, superseded byserver.py(kept commented for reference)
Giving this to a colleague
No manual clone needed — uv fetches and runs the server directly from the git repo. Each person still runs their own local copy with their own token; nothing is centrally hosted.
Register the server with Claude Code (one command, no clone/install step):
claude mcp add github-assistant --scope local -- uvx --from git+https://github.com/ritesh31/github-mcp github-mcpReplace the URL with this repo's actual location once pushed.
uvcaches the repo behind the scenes on first run — no visible clone step.--scope localkeeps it private to their machine.Provide
GITHUB_TOKEN. Since there's no local clone, there's no.envfile to edit — pass the token as an environment variable on theclaude mcp addcommand instead:claude mcp add github-assistant --scope local -e GITHUB_TOKEN=ghp_yourColleaguesOwnTokenHere -- uvx --from git+https://github.com/ritesh31/github-mcp github-mcpEach person uses their own token (generate at https://github.com/settings/tokens — read-only, fine-grained, scoped to needed repos).
Verify:
claude mcp listShould show
github-assistantas Connected. Open a Claude Code session and run/mcpto confirm all 4 tools, the resource, and the prompt are discovered.Test: ask Claude something like "what's the star count on
<owner>/<repo>?" — it should pick theget_repositorytool on its own.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Repo intel for AI coding agents: overview, PRs, contributors, hot files, CI, deps. Remote MCP.
Access the GitHub API, enabling file operations, repository management, search functionality, and…
Search GitHub, npm, PyPI, StackOverflow, ArXiv from one MCP — built for coding agents.
AI-native git hosting — repos, PRs, issues, CI gates, and AI code review over MCP (60 tools).
Related MCP Servers
- AlicenseCqualityBmaintenanceMonitors and analyzes GitHub repository health by detecting stale branches, old pull requests, unresponsive issues, and security alerts. Integrates with MCP-compatible AI assistants and automation tools.1MIT
- FlicenseNot gradedqualityBmaintenanceEnables AI assistants to discover and interact with GitHub repositories through standardized MCP tools, allowing exploration and retrieval of project information without direct API calls.-
- AlicenseAqualityBmaintenanceEnables AI assistants to query GitHub repositories, issues, pull requests, CI status, and discover trending repos via natural language. Provides MCP tools, resources, and prompts for GitHub data access.14MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with GitHub via MCP, managing repositories, issues, PRs, and analyzing repository health through tools like list_repositories, read_issues, create_issue, comment_on_pr, and analyze_repo_health.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ritesh31/github-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server