GitHub Context MCP Server
Provides tools for interacting with GitHub repositories, including browsing files, reading file contents, searching code, viewing commits, branches, pull requests, and issues, with runtime management of repository lists.
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 Context MCP ServerShow me open issues in myorg/backend"
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 Context MCP Server
An MCP (Model Context Protocol) server that gives Claude access to one or more GitHub repositories — including private ones — directly from Claude Desktop or Claude Code.
Repositories are managed dynamically at runtime: just tell Claude to add or remove a repo and it's persisted immediately, with no config file editing required.
Prerequisites
Node.js 18 or later
Related MCP server: MCP Git/PR Assist
Installation
npm install
npm run buildGitHub Token Setup
Go to GitHub → Settings → Developer settings → Personal access tokens → Tokens (classic)
Click Generate new token (classic)
Give it a name (e.g.
claude-mcp)Select the
reposcope (covers both public and private repositories)Click Generate token and copy it
If you only need public repos, the
public_reposcope is sufficient.
Claude Desktop Configuration
Edit the config file at:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add this block inside "mcpServers":
{
"mcpServers": {
"github-context": {
"command": "node",
"args": ["path_to_repo/dist/index.js"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}That's it — no repo list needed here. Restart Claude Desktop after saving.
Managing repositories
Repos are managed through Claude itself at runtime. The list is stored in dist/repos.json and persists across sessions.
Add a repo
"Add the repo myorg/backend to GitHub context"
Claude calls add_repo → verifies the repo is accessible with your token → saves it to repos.json.
Remove a repo
"Remove myorg/old-project from GitHub context"
Claude calls remove_repo → updates repos.json.
List current repos
"What repos do you have access to?"
Claude calls list_repos → shows everything currently saved.
Changes take effect immediately — no restart needed.
Available Tools
Repo management
Tool | Description |
| Show all saved repositories |
| Add a repo (verifies access before saving) |
| Remove a repo from the list |
Data access
Tool | Description |
| Metadata: description, language, stars, default branch, visibility |
| Browse files and directories at any path |
| Read the full content of any file |
| Search code across a repo (GitHub search API) |
| Recent commit history, optionally filtered by branch or file path |
| List all branches (protected branches are marked) |
| List open, closed, or all pull requests |
| List open, closed, or all issues |
Common parameters
repo—"owner/repo"format, must be in the saved listbranch— branch name, tag, or commit SHA (defaults to the repo's default branch)path— file or directory path inside the repomax_results— how many items to returnstate—"open","closed", or"all"(for PRs and issues)
Example prompts
Add the repo myorg/backend to GitHub context.
List all the files in the src/ directory of myorg/backend.
Read the file src/auth/middleware.ts from myorg/backend.
Search for "function authenticate" in myorg/backend.
Show me the last 10 commits on the main branch of myorg/frontend.
What open issues are there in myorg/backend?
Remove myorg/old-project from GitHub context.Repos file location
By default repos are stored at dist/repos.json next to the built script. To use a custom path, set the REPOS_FILE env var in your Claude Desktop config:
"env": {
"GITHUB_TOKEN": "ghp_your_token_here",
"REPOS_FILE": "localpath/.config/github-mcp/repos.json"
}This is useful if you want the repo list to survive rebuilds or to share it across multiple projects.
Development
Run without building (useful for local testing):
GITHUB_TOKEN=ghp_... npm run devRecompile after making source changes:
npm run buildThen restart Claude Desktop.
Project structure
├── src/
│ └── index.ts # MCP server — all tools, repo persistence logic
├── dist/ # Compiled output (generated by npm run build)
│ ├── index.js
│ └── repos.json # Persisted repo list (auto-created on first add_repo)
├── package.json
├── tsconfig.json
├── .env.example
└── claude-desktop-config.example.jsonSecurity notes
Your GitHub token is passed via environment variable and never logged or sent to Claude.
Only repos explicitly added via
add_repoare accessible — Claude cannot reach other repos even if your token has broader access.add_repoverifies the repo exists and is accessible with your token before saving it.File content is truncated at 100,000 characters to prevent context overflow.
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.
Latest Blog Posts
- 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/Haavi97/github-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server