github-mcp-server
Provides tools for interacting with GitHub's API, enabling management of repositories, issues, pull requests, and code search.
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-serverlist my recent pull requests"
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 (Local)
A local MCP server that gives Claude Desktop direct access to your GitHub account via a personal access token. Runs entirely on your machine — your token never leaves your computer except to talk to GitHub's API directly.
Tools included
github_whoami— get the authenticated user's profilegithub_list_repos— list your reposgithub_get_repo— get details on a specific repogithub_search_repos— search repositoriesgithub_get_file— read a file's contents from a repogithub_list_issues— list issues in a repogithub_create_issue— create an issuegithub_list_pull_requests— list PRs in a repogithub_search_code— search code across GitHub
Related MCP server: GitHub MCP Server
1. Prerequisites
Node.js 18+ installed on your computer
A GitHub Personal Access Token (PAT)
Create a GitHub token
Click Generate new token → Fine-grained token (recommended) or classic token
Give it a name, an expiration, and scopes:
Fine-grained: grant access to the repos you want, with Contents (read), Issues (read/write), Pull requests (read) permissions
Classic: the
reposcope covers everything above
Copy the token (starts with
github_pat_orghp_) — you won't see it again
Keep this token secret. Anyone with it can act as you on GitHub within its scopes.
2. Install
Unzip this project anywhere on your computer, then in a terminal:
cd github-mcp-server
npm install
npm run buildThis produces a dist/index.js file — that's what Claude Desktop will run.
3. Configure Claude Desktop
Open your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Add an entry under mcpServers (create the file/section if it doesn't exist),
using the absolute path to dist/index.js:
{
"mcpServers": {
"github": {
"command": "node",
"args": ["/absolute/path/to/github-mcp-server/dist/index.js"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}Replace the path and token with your own values.
4. Restart Claude Desktop
Fully quit and reopen the app. You should see a small tools/plug icon indicating the "github" MCP server is connected, and its tools will be available in chat.
Notes
This server only runs while Claude Desktop is open — it starts/stops the process for you.
To revoke access at any time, delete the token at https://github.com/settings/tokens.
To add more capabilities (e.g. creating PRs, managing branches), extend
src/index.tswith additionalserver.tool(...)calls using the Octokit REST API.
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 Servers
- FlicenseBqualityDmaintenanceAn MCP server that enables Claude and other compatible LLMs to interact with the GitHub API, supporting features like creating issues, retrieving repository information, listing issues, and searching repositories.4
- FlicenseBqualityDmaintenanceAn MCP server that allows Claude and other MCP-compatible LLMs to interact with the GitHub API, supporting features like creating issues, getting repository information, listing issues, and searching repositories.4
- AlicenseBqualityDmaintenanceAn MCP server that enables managing GitHub repositories, pull requests, issues, and more through natural language in Cursor or Claude Desktop.39214MIT
- Flicense-qualityDmaintenanceA working MCP server that connects to the real GitHub API, enabling users to manage repositories, issues, pull requests, and more through natural language in Claude Desktop.
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/hampannagouda/github-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server