GitHub Issues MCP Server
Provides tools for reading and managing GitHub issues, including listing and fetching issues, creating issues, adding comments, and closing issues, with authenticated access and confirmation prompts for write actions.
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 Issues MCP ServerList the open issues in the repository."
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 Issues MCP Server
A custom MCP (Model Context Protocol) server that lets an AI model securely read and manage GitHub issues, with:
Authenticated access to a private/personal GitHub account via a token
Confirmation prompts in front of every write/delete-equivalent action
Metrics tracking on tool-call success/failure so you can measure how reliably the model picks the right tool and uses it correctly
1. Setup
cd mcp-github-server
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env
# edit .env: paste in a GitHub token (Settings -> Developer settings ->
# Personal access tokens -> Fine-grained tokens, with Issues read/write
# permission on the repo(s) you want to use), and optionally restrict
# ALLOWED_REPOS.Related MCP server: GitHub MCP Server
2. Try it locally with the MCP Inspector
mcp dev server.pyThis opens a browser UI where you can call list_issues, get_issue,
create_issue, add_comment, and close_issue directly and see the
confirmation prompt fire for the write tools.
3. Connect it to Claude Desktop (or another MCP client)
mcp install server.py --name "GitHub Issues"Or add manually to your client's MCP config:
{
"mcpServers": {
"github-issues": {
"command": "python",
"args": ["/absolute/path/to/mcp-github-server/server.py"]
}
}
}4. Tools exposed
Tool | Type | Confirmation required? |
| read | No |
| read | No |
| write | Yes |
| write | Yes |
| write | Yes |
Write tools use MCP elicitation (ctx.elicit(...)) to pause the tool
call and ask a human to accept/decline before anything touches GitHub. If
the human declines or cancels, nothing is written and that's logged as a
"declined" outcome in metrics.
GitHub's API doesn't support deleting issues (only GitHub Apps with special
permissions can, and it's rarely allowed) — close_issue is the closest
"destructive" action, and it's gated the same way creates/comments are.
5. Metrics: measuring tool-selection quality
Every tool call — success, failure, and confirmation outcome — is logged
to a local SQLite DB (metrics.db by default). View a summary with:
python metrics_dashboard.pyThis reports, per tool:
Success rate — low success rate on one tool suggests its description or argument schema is confusing the model relative to the others
Top error category —
validationerrors mean the model picked the right tool but passed bad arguments (usually fixable by tightening the docstring);auth/not_foundare config issues, not model issuesConfirmation decline rate — how often a human rejected a write action the model proposed; a high rate suggests the model is reaching for create/comment/close in situations where it shouldn't
You can also query metrics.db directly with any SQLite tool for deeper
analysis (e.g. plotting trends over time as you iterate on tool
descriptions).
6. Production hardening ideas (next steps)
Swap the raw PAT for a GitHub App installation token (shorter-lived, scoped per-installation, better audit trail)
Add retry/backoff on
rate_limiterrors instead of failing immediatelyAdd structured logging (e.g. to a real DB or observability platform) instead of SQLite once you're running this for more than one user
Add per-tool rate limiting so a misbehaving model can't spam GitHub
Write a small eval set of prompts with known "correct tool" labels so you can measure true tool-selection accuracy, not just success/failure proxies
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 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
- AlicenseBqualityAmaintenanceMCP server that exposes GitHub operations as tools for AI agents, enabling code search, issue management, and PR review.12MIT
- Flicense-qualityBmaintenanceMCP server that enables AI agents to perform GitHub operations like creating repositories, issues, and commits through natural language.
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
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/Bhagwatak29/Secure-MCP-Gateway-for-Autonomous-AI-Actions'
If you have feedback or need assistance with the MCP directory API, please join our Discord server