github-issue-mcp
Provides tools for managing GitHub issues, including generating structured issues, detecting duplicates, listing issues and labels, and creating issues after human approval via the GitHub REST API.
Uses Google Gemini for AI-powered issue generation, semantic duplicate analysis, and reasoning throughout the workflow via the Gemini API.
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-issue-mcpCreate a GitHub issue for: avatar doesn't update after changing profile picture"
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 Issue MCP Assistant
An AI-powered GitHub issue management system built with Model Context Protocol (MCP), Google Gemini, TypeScript, and the GitHub REST API.
GitHub Issue MCP turns a short natural-language bug report into a structured GitHub issue while intelligently checking for existing duplicates before anything is created.
The project demonstrates a controlled agentic workflow where Gemini can reason and use MCP tools, while persistent GitHub write operations remain explicitly controlled by the application and the user.
The MCP server is also packaged as a reusable npm package so it can be embedded into other Node.js applications or launched directly as an MCP stdio server.
โจ Features
๐ค AI-powered issue generation using Google Gemini
๐ Duplicate issue detection
๐ง Semantic duplicate analysis instead of relying only on keyword matching
๐ Interactive collection of additional issue details
๐ท๏ธ Repository label retrieval and validation
๐ค Human approval before issue creation
๐ Prevents the autonomous AI agent from directly creating GitHub issues
๐ Automatic retry handling for temporary Gemini API failures
๐ฆ Daily Gemini quota detection without unnecessary retries
โ๏ธ Configurable Gemini model and retry behavior
๐งช Comprehensive unit, workflow, and integration tests
๐ฆ Reusable MCP server architecture
๐ Published npm package
๐ Executable
github-issue-mcpMCP CLI๐ Published to the official MCP Registry
๐ก๏ธ Phase-restricted AI tool access
๐ Separation between AI reasoning and external GitHub operations
๐ฆ Installation
Related MCP server: git-issuer-mcp
Install from npm
npm install github-issue-mcp
The package is available on npm as:
github-issue-mcp
Current release:
v1.1.2
๐ Quick Start
Run as an MCP server
The package exposes an executable MCP server CLI.
npx -y github-issue-mcp
The server communicates using MCP over stdio.
This is the recommended approach when configuring the server in an MCP-compatible client.
๐ MCP Client Configuration
GitHub Issue MCP can be used with any MCP-compatible client that supports stdio servers.
Using npx
The simplest configuration uses the published npm package:
{
"mcpServers": {
"github-issue-mcp": {
"command": "npx",
"args": [
"-y",
"github-issue-mcp"
],
"env": {
"GITHUB_TOKEN": "YOUR_GITHUB_TOKEN",
"GITHUB_OWNER": "YOUR_GITHUB_OWNER",
"GITHUB_REPO": "YOUR_GITHUB_REPO",
"GEMINI_API_KEY": "YOUR_GEMINI_API_KEY"
}
}
}
}
The MCP client starts:
npx -y github-issue-mcp
and communicates with the server over stdio.
โ๏ธ Configuration
Create a .env file when running the project locally.
GITHUB_TOKEN=your_github_token
GITHUB_OWNER=your_github_username
GITHUB_REPO=your_repository
GEMINI_API_KEY=your_gemini_api_key
GEMINI_MODEL=gemini-3.6-flash
GEMINI_MAX_RETRIES=3
GEMINI_RETRY_BASE_DELAY=1000
DEBUG=false
Environment variables
Variable Required Description Default
GITHUB_TOKEN Yes GitHub API authentication token Required
GITHUB_OWNER Yes GitHub repository owner or organization Required
GITHUB_REPO Yes GitHub repository name Required
GEMINI_API_KEY Yes Google Gemini API key Required
GEMINI_MODEL No Gemini model used by the AI client gemini-3.6-flash
GEMINI_MAX_RETRIES No Maximum number of Gemini retries 3
GEMINI_RETRY_BASE_DELAY No Base retry delay in milliseconds 1000
DEBUG No Enables debug behavior/logging false
Never commit .env, GitHub tokens, or Gemini API keys to Git.
๐งฉ MCP Tools
The MCP server exposes the following tools:
Tool Purpose
generate_issue Generate a structured GitHub issue
create_github_issue Create an issue on GitHub
list_github_issues Retrieve open repository issues
list_github_labels Retrieve repository labels
check_duplicate_issue Find likely duplicate issue candidates
generate_issue
Generates a structured issue from supplied information.
Inputs
description
reproductionSteps
expectedBehavior
actualBehavior
environment
additionalContext
Example output
{
"title": "Bug: Login button does not work",
"body": "## Description\n\nLogin button does not work...",
"labels": ["bug"]
}
check_duplicate_issue
Retrieves likely duplicate candidates from the repository.
The tool performs inexpensive lexical candidate ranking against existing open issues.
The similarity score is not treated as proof of duplication.
Gemini performs the final semantic analysis.
This keeps the expensive AI reasoning focused on a small candidate set rather than every issue in the repository.
list_github_issues
Retrieves open GitHub issues while filtering out pull requests.
list_github_labels
Retrieves labels available in the repository.
create_github_issue
Creates the final GitHub issue.
This tool is intentionally not exposed to the autonomous Gemini agent.
It is invoked directly by the client only after explicit human approval.
๐๏ธ Architecture
โโโโโโโโโโโโโโโโโโโโ
โ User โ
โโโโโโโโโโฌโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโ
โ CLI Client โ
โโโโโโโโโโฌโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP Client โ
โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP Server โ
โโโโโโโโโโโโโโฌโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโ
โ โ โ
โผ โผ โผ
Duplicate Check Issue Generation GitHub Tools
โ โ โ
โผ โผ โผ
Candidate Issues Proposed Issue GitHub REST API
โ โ
โผ โผ
Gemini Semantic Human Approval
Analysis โ
โ โ
โโโโโโดโโโโโ โโโโโโดโโโโโ
โ โ โ โ
Yes No No Yes
โ โ โ โ
โผ โผ โผ โผ
Stop Continue Stop Create Issue
๐ Core Design Principle
The most important architectural decision is:
Gemini does not have autonomous access to the GitHub write operation.
The workflow is intentionally divided into controlled phases.
Phase 1
Duplicate Detection
โ
โผ
Semantic Analysis
โ
โผ
Phase 2
Collect Details
โ
โผ
Phase 3
Issue Generation
โ
โผ
Phase 4
Human Approval
โ
โผ
Phase 5
GitHub Creation
This provides a clear human-in-the-loop safety boundary around persistent external side effects.
๐ Workflow
The complete workflow is:
1. User describes an issue
โ
โผ
2. Retrieve duplicate candidates
โ
โผ
3. Gemini performs semantic analysis
โ
โโโโโโโโดโโโโโโโ
โ โ
Duplicate No duplicate
โ โ
โผ โผ
Stop 4. Collect additional details
โ
โผ
5. Gemini generates
structured issue
โ
โผ
6. Display proposed issue
โ
โผ
7. Ask user for approval
โ
โโโโโโโโดโโโโโโโ
โ โ
No Yes
โ โ
โผ โผ
Stop 8. Client creates
GitHub issue
๐ Duplicate Detection
Duplicate detection is deliberately split into two stages.
Stage 1 โ Candidate Retrieval
The MCP tool performs inexpensive lexical similarity/ranking against existing open issues.
For example:
User:
"The search results page crashes when I apply multiple filters."
โ
โผ
check_duplicate_issue
โ
โผ
Candidate #8
"The search results page crashes
when I apply multiple filters."
Similarity: 0.21
The similarity score is only used to identify potentially relevant candidates.
It is not considered proof of duplication.
Stage 2 โ Semantic Analysis
Gemini receives the candidate issues and determines whether any candidate describes the same underlying problem.
Example:
{
"isDuplicate": true,
"duplicateIssue": {
"number": 8,
"title": "Bug: The search results page crashes when I apply multiple filters.",
"url": "https://github.com/example/repository/issues/8"
},
"reason": "The candidate describes the exact same underlying problem."
}
This prevents unrelated issues from being incorrectly classified as duplicates merely because they share common words such as:
login
page
button
crash
issue
๐ค Agent Workflow
The Gemini agent supports controlled multi-step tool execution.
Available MCP tools are restricted according to the current workflow phase.
Phase 1 โ Duplicate Detection
Gemini receives:
check_duplicate_issue
The agent can use this tool to retrieve candidate issues.
It cannot use:
generate_issue
create_github_issue
during this phase.
Phase 3 โ Issue Generation
Gemini receives:
list_github_labels
generate_issue
This allows the agent to inspect repository labels and generate the proposed issue.
It still cannot create the GitHub issue.
Phase 5 โ Issue Creation
The autonomous Gemini agent does not receive:
create_github_issue
Instead, the application directly invokes the tool after explicit human approval.
๐ Security Model
The project uses multiple layers to prevent unintended GitHub writes.
1. Phase-Based Tool Exposure
Available tools are restricted depending on the current workflow phase.
Duplicate Phase
โ
โโโ check_duplicate_issue
Generate Phase
โ
โโโ list_github_labels
โโโ generate_issue
Creation Phase
โ
โโโ create_github_issue
(client-controlled)
2. Autonomous Write Protection
The Gemini agent cannot directly invoke:
create_github_issue
Even if the model attempts to request the tool, the agent workflow rejects the operation.
3. Human Approval
The proposed issue is displayed to the user before creation.
Example:
================================
PROPOSED GITHUB ISSUE
================================
Title:
Bug: Login button does not work with valid credentials.
Labels:
bug
Body:
## Description
Login button does not work with valid credentials.
## Steps to Reproduce
Open login page โ enter valid credentials โ click Login.
## Expected Behavior
User should be redirected to the dashboard.
## Actual Behavior
Nothing happens after clicking Login.
Create this issue on GitHub? [y/N]:
Only explicit approval proceeds to the GitHub write operation.
๐ค Human-in-the-Loop Creation
Issue creation is intentionally controlled by the application.
Gemini
โ
โผ
Generate Proposed Issue
โ
โผ
CLI Displays Issue
โ
โผ
User Approval
โ
โโโ No โโโบ Stop
โ
โโโ Yes
โ
โผ
Client invokes create_github_issue
โ
โผ
GitHub
Creating a GitHub issue is a persistent external side effect.
Therefore, the AI proposes the action while the user controls the final write operation.
๐ Gemini Error Handling
The Gemini client includes retry handling for temporary API failures.
HTTP 429
The system distinguishes between temporary rate-limit errors and exhausted daily quotas.
Temporary 429 errors are retried according to the configured retry policy.
Daily quota exhaustion is detected separately and is not repeatedly retried because additional requests cannot succeed until the quota resets or a different Gemini project/model is used.
HTTP 5xx
Temporary Gemini server-side failures are retried automatically.
Examples include:
500
502
503
504
Retry Configuration
Retry behavior can be configured through environment variables:
GEMINI_MAX_RETRIES=3
GEMINI_RETRY_BASE_DELAY=1000
The retry delay increases between attempts.
Invalid JSON
If an MCP tool expected to return JSON produces malformed output, the agent reports a clear error.
Examples:
generate_issue returned invalid JSON.
or:
check_duplicate_issue returned invalid JSON.
This keeps failures localized and easier to diagnose.
๐ Use as a Library
GitHub Issue MCP is designed to be embedded into another Node.js application.
Create an MCP server
import {
createGitHubIssueMcpServer
} from "github-issue-mcp/server";
const server = createGitHubIssueMcpServer({
name: "my-github-issue-server",
version: "1.0.0"
});
The server factory has no dependency on a specific transport, allowing the MCP server to be reused by different hosts and transports.
Start a stdio server
import {
startStdioServer
} from "github-issue-mcp/server/stdio";
await startStdioServer();
Start the executable CLI
npx -y github-issue-mcp
The executable starts the reusable MCP server using the stdio transport.
๐ฆ Package Exports
The npm package exposes the following public entry points:
github-issue-mcp
github-issue-mcp/server
github-issue-mcp/server/stdio
Server factory
import {
createGitHubIssueMcpServer
} from "github-issue-mcp/server";
Stdio server
import {
startStdioServer
} from "github-issue-mcp/server/stdio";
CLI
npx -y github-issue-mcp
๐ MCP Registry
GitHub Issue MCP is published to the official MCP Registry.
Registry identifier:
io.github.sarim-aliii/github-issue-mcp
npm package:
github-issue-mcp
Current release:
v1.1.2
The Registry publication allows MCP-compatible ecosystems to discover the server using its official registry identity.
๐งช Testing
The project uses Vitest for automated testing.
The current test suite contains:
12 test files
47 tests
47 passing
Tests cover multiple layers of the application.
GitHub API Tests
tests/github/issues.test.ts
Validates:
GitHub issue retrieval
Pull-request filtering
Label retrieval
Label validation
Empty label handling
GitHub issue creation
GitHub API error handling
MCP Tool Tests
tests/tools/mcp-tools.test.ts
Validates:
MCP tool registration
MCP tool invocation
Tool argument handling
MCP error responses
Issue Generation Tests
tests/tools/generate-issue.test.ts
Validates:
Bug issue generation
Optional field handling
Fallback placeholders
Structured issue output
Duplicate Detection Tests
tests/tools/check-duplicate.test.ts
Validates:
Candidate retrieval
Similarity ranking
Candidate limiting
Duplicate detection behavior
Gemini Agent Tests
tests/client/agent.test.ts
Validates:
Gemini request handling
Temporary 429 retry behavior
Temporary 5xx retry behavior
Daily quota handling
Maximum retry behavior
Non-retryable errors
Agent Workflow Tests
tests/client/agent-workflow.test.ts
Validates:
Duplicate-check phase restrictions
Issue-generation phase restrictions
Label lookup
Structured issue generation
Autonomous creation protection
Malformed MCP responses
Workflow Tests
tests/client/workflow.test.ts
Validates:
Duplicate workflow termination
Successful issue generation and creation
Approval rejection
Missing generated issue handling
Configuration Tests
tests/client/config.test.ts
Validates:
Default Gemini configuration
Environment-variable configuration
MCP Integration Tests
tests/integration/mcp-server.test.ts
Validates:
MCP server startup
MCP connection behavior
MCP tool availability
Package API Integration Tests
tests/integration/package-api.test.ts
Validates the public npm package API and ensures the published package exposes the expected reusable server interfaces.
Issue Creation Safety Tests
The integration suite also validates that the issue creation boundary remains client-controlled and that the autonomous agent cannot bypass the intended approval flow.
โถ๏ธ Run Tests
Run the complete test suite:
npm test
Run TypeScript validation:
npm run typecheck
Build the project:
npm run build
Expected current result:
Test Files 12 passed (12)
Tests 47 passed (47)
๐ Test Coverage
The current suite validates:
โ GitHub API interactions
โ Issue listing
โ Pull-request filtering
โ Label retrieval
โ Label validation
โ Issue creation
โ GitHub API error handling
โ MCP tool registration
โ MCP tool invocation
โ Issue generation
โ Duplicate candidate retrieval
โ Lexical candidate ranking
โ Semantic duplicate workflow
โ Gemini retries
โ Gemini 429 handling
โ Gemini 5xx handling
โ Gemini quota handling
โ Malformed JSON handling
โ Agent phase restrictions
โ Human-controlled write boundary
โ Workflow orchestration
โ Approval handling
โ MCP integration
โ Package API
โ Configuration defaults
โ Environment-based configuration
๐งช Consumer Integration Testing
The project also validates installation from the built npm package in a clean consumer project.
The tested flow is:
Build package
โ
โผ
npm pack
โ
โผ
Install package in clean project
โ
โผ
Import public API
โ
โผ
Create MCP server
โ
โผ
Start stdio server
โ
โผ
Connect with MCP Client
โ
โผ
Discover tools
The published package has been tested using:
npm install github-issue-mcp
and the executable:
npx github-issue-mcp
The consumer integration verifies that the expected MCP tools are available.
๐ ๏ธ Tech Stack
Language
TypeScript
Node.js
AI
Google Gemini
@google/genai
MCP
@modelcontextprotocol/sdk
Validation
Zod
CLI
Inquirer
Testing
Vitest
GitHub
GitHub REST API
๐ Project Structure
github-issue-mcp/
โ โ โโโ agent.ts
โ โ โโโ ai-client.ts
โ โ โโโ approval.ts
โ โ โโโ cli.ts
โ โ โโโ config.ts
โ โ โโโ index.ts
โ โ โโโ issue-details.ts
โ โ โโโ logger.ts
โ โ โโโ tool-adapter.ts
โ โ โโโ workflow.ts
โ โ
โ โโโ github/
โ โ โโโ client.ts
โ โ โโโ issues.ts
โ โ
โ โโโ server/
โ โ โโโ cli.ts
โ โ โโโ create-server.ts
โ โ โโโ index.ts
โ โ โโโ stdio.ts
โ โ
โ โโโ tools/
โ โ โโโ check-duplicate.ts
โ โ โโโ create-issue.ts
โ โ โโโ generate-issue.ts
โ โ โโโ list-issues.ts
โ โ โโโ list-labels.ts
โ โ
โ โโโ types/
โ โ โโโ issue.ts
โ โ
โ โโโ index.ts
โ
โโโ examples/
โ โโโ basic-server/
โ โ โโโ index.mjs
โ โ
โ โโโ stdio-client/
โ โ โโโ index.mjs
โ โ
โ โโโ README.md
โ
โโโ tests/
โ โโโ client/
โ โ โโโ agent.test.ts
โ โ โโโ agent-workflow.test.ts
โ โ โโโ config.test.ts
โ โ โโโ workflow.test.ts
โ โ
โ โโโ github/
โ โ โโโ issues.test.ts
โ โ
โ โโโ integration/
โ โ โโโ issue-creation-safety.test.ts
โ โ โโโ mcp-server.test.ts
โ โ โโโ package-api.test.ts
โ โ
โ โโโ server/
โ โ โโโ create-server.test.ts
โ โ
โ โโโ tools/
โ โโโ check-duplicate.test.ts
โ โโโ generate-issue.test.ts
โ โโโ mcp-tools.test.ts
โ
โโโ .env.example
โโโ .gitignore
โโโ package.json
โโโ server.json
โโโ tsconfig.json
โโโ README.md
โ๏ธ Local Development Setup
1. Clone the repository
git clone https://github.com/sarim-aliii/github-issue-mcp.git
cd github-issue-mcp
2. Install dependencies
npm install
3. Configure environment variables
Create a .env file:
GITHUB_TOKEN=your_github_token
GITHUB_OWNER=your_github_username
GITHUB_REPO=your_repository
GEMINI_API_KEY=your_gemini_api_key
GEMINI_MODEL=gemini-3.6-flash
GEMINI_MAX_RETRIES=3
GEMINI_RETRY_BASE_DELAY=1000
DEBUG=false
Never commit .env to Git.
โถ๏ธ Running the Assistant
The original interactive client can be started with:
npx tsx src/client/index.ts
The assistant will ask for a short issue description.
Example:
โ Describe your issue:
The export button on the reports page does nothing when clicked.
The assistant will then:
1. Connect to the MCP server
2. Discover available MCP tools
3. Search for possible duplicates
4. Analyze candidates semantically
5. Stop if a duplicate exists
6. Ask for additional details
7. Generate a structured issue
8. Display the proposed issue
9. Ask for human confirmation
10. Create the issue if approved
๐ก Example
Input
The export button on the reports page does nothing when clicked.
Additional Information
Reproduction
Open the reports page, select a report, and click Export.
Expected
The selected report should be downloaded as a CSV file.
Actual
Nothing happens after clicking Export.
Environment
Chrome 126, Windows 11, App v2.4.1.
Additional context
The issue occurs consistently.
Generated Issue
## Description
The export button on the reports page does nothing when clicked.
## Steps to Reproduce
Open the reports page, select a report, and click Export.
## Expected Behavior
The selected report should be downloaded as a CSV file.
## Actual Behavior
Nothing happens after clicking the Export button.
## Environment
Chrome 126, Windows 11, App v2.4.1.
## Additional Context
The issue occurs consistently.
The user then sees:
Create this issue on GitHub? [y/N]:
Only an explicit approval creates the issue.
๐ง Design Decisions
Why MCP?
MCP provides a standardized interface between the AI agent and external capabilities.
Instead of embedding GitHub API logic directly into the Gemini workflow, GitHub operations are exposed as MCP tools.
Gemini
โ
โ MCP
โผ
GitHub Tools
โ
โผ
GitHub REST API
This keeps the AI layer separated from external-service logic and makes the tools reusable.
Why separate duplicate retrieval and semantic analysis?
The candidate retrieval process is inexpensive and deterministic enough to narrow the search space.
Gemini then performs the more expensive semantic reasoning only on relevant candidates.
All Open Issues
โ
โผ
Lexical Candidate Ranking
โ
โผ
Small Candidate Set
โ
โผ
Gemini Semantic Analysis
โ
โผ
Duplicate / Not Duplicate
This is more efficient than asking an LLM to reason over every issue in a repository.
Why require human approval?
Creating a GitHub issue is a persistent external side effect.
The system therefore separates:
AI Reasoning
from:
External Write Operation
The AI proposes the issue while the user controls the final action.
Why restrict tools by phase?
Different workflow stages require different capabilities.
Giving the model access to every tool at every stage increases the possibility of unintended behavior.
Instead:
Duplicate Phase
โ
โผ
check_duplicate_issue
Generate Phase
โ
โโโ list_github_labels
โโโ generate_issue
Creation Phase
โ
โผ
create_github_issue
(client controlled)
This makes the agent's permissions explicit and easier to reason about.
๐ก๏ธ Reliability
The project includes explicit handling for temporary Gemini failures.
Temporary 429
โ
โผ
Retry according to policy
Temporary 5xx
โ
โผ
Retry according to policy
Daily quota exhausted
โ
โผ
Stop immediately
This avoids wasting retry attempts when a daily quota cannot be recovered through another request.
๐ง Future Improvements
Potential future improvements include:
More sophisticated duplicate-ranking algorithms
GitHub issue comments
Issue updates
Issue assignment
Milestone support
GitHub Projects integration
Pull-request creation
Automatic issue categorization
Repository-specific issue templates
Support for multiple GitHub repositories
Persistent conversation context
Streaming Gemini responses
More comprehensive end-to-end integration tests
Structured logging and observability
Metrics for agent/tool execution
Repository-specific issue policies
Additional MCP transports
๐ฏ Project Goals
This project demonstrates how to combine:
LLM Reasoning
+
MCP Tool Calling
+
External APIs
+
Structured Validation
+
Semantic Duplicate Detection
+
Human Approval
+
Automated Testing
The main goal is not simply to generate GitHub issues with AI.
The goal is to demonstrate a controlled agentic workflow where:
The model can reason
The model can use tools
Tool access is restricted by workflow phase
GitHub operations are isolated behind MCP
Duplicate detection combines deterministic retrieval with AI reasoning
Persistent writes require explicit human approval
Temporary AI failures are handled automatically
The MCP server can be reused independently of the interactive client
The package can be consumed by other Node.js applications
The package can be launched directly as an MCP stdio server
The workflow is covered by automated tests
๐ Current Status
Project
Functional
Package
github-issue-mcp
v1.1.2
MCP Registry
io.github.sarim-aliii/github-issue-mcp
TypeScript
โ Typecheck passing
โ Build passing
Tests
โ 12 test files
โ 47 tests
โ 47 passing
Core Workflow
โ MCP server
โ MCP client
โ Gemini integration
โ Duplicate candidate retrieval
โ Semantic duplicate analysis
โ Issue generation
โ Label retrieval
โ Human approval
โ GitHub issue creation
Reusable Package
โ npm package
โ Public server factory
โ Public stdio server API
โ Executable MCP CLI
โ Consumer integration test
โ Package API integration test
Safety
โ Phase-restricted Gemini tools
โ Autonomous write protection
โ Client-controlled GitHub creation
โ Human approval boundary
Reliability
โ Gemini 429 retry handling
โ Gemini 5xx retry handling
โ Daily quota detection
โ Configurable retry policy
โ Invalid JSON handling
๐ License
This project is intended as a demonstration and reusable implementation of an AI-powered, MCP-based GitHub issue management workflow.
See the repository license for licensing terms.
๐ Links
Repository:
https://github.com/sarim-aliii/github-issue-mcp
npm:
https://www.npmjs.com/package/github-issue-mcp
MCP Registry:
https://registry.modelcontextprotocol.io/Available Tools
5 toolscheck_duplicate_issueA
Find the most likely existing open GitHub issues that could be related to a proposed issue. This tool retrieves open issues and performs cheap lexical candidate ranking. Treat the returned issues as candidates only; semantic duplicate determination must be done by the AI. Do not call list_github_issues separately for duplicate checking.
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | GitHub repository name | |
| owner | Yes | GitHub repository owner | |
| description | Yes | Description of the proposed issue |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It discloses that the tool retrieves open issues and performs 'cheap lexical candidate ranking,' and it explicitly sets expectations that results are candidates, not definitive duplicates. This is transparent about the tool's limitations, though it does not mention auth, rate limits, or empty-result behavior, which would make it fully transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences: the first states the core purpose, the second explains the mechanism and caveat, and the third gives an exclusionary usage rule. Every sentence carries useful information with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has three parameters, no output schema, and no annotations. The description explains the return value conceptually ('candidates'), the ranking method, and the relationship to sibling tools. While it does not describe the exact return format, the conceptual explanation is sufficient for an AI to invoke the tool correctly and interpret the results appropriately.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers all three parameters with descriptions (owner, repo, description) at 100% coverage. The tool description does not add new parameter-level semantics beyond what the schema provides, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-resource pair: 'Find the most likely existing open GitHub issues that could be related to a proposed issue.' This clearly distinguishes the tool from siblings like list_github_issues, especially with the explicit instruction not to call that sibling for duplicate checking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage context: it is for duplicate checking against existing open issues, and it warns against using list_github_issues separately for this purpose. It also clarifies that results are candidates only and semantic determination is the AI's responsibility, which guides appropriate use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_github_issueB
Create a new issue in a GitHub repository
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Issue body in Markdown | |
| repo | Yes | GitHub repository name | |
| owner | Yes | GitHub repository owner | |
| title | Yes | Issue title | |
| labels | No | GitHub labels to apply |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are absent, so the description must fully disclose behavior. It only states 'Create a new issue', providing no information about authentication requirements, potential duplicate creation on repeated calls, rate limits, or side effects. This leaves the agent without expectations beyond the basic mutation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that clearly names the operation and resource. It wastes no words and is immediately scannable, earning a top score for structure.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with this complexity, the description is minimally adequate: it covers the core action and the schema handles parameter details. However, it lacks any mention of return values (e.g., issue URL) or interaction with sibling tools, leaving some context incomplete for an agent without additional hints.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with all five parameters (owner, repo, title, body, labels) individually documented. The tool description itself adds no extra semantic context for parameters, so it scores at the baseline of 3 as per the rubric.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (create) and the target resource (a new issue in a GitHub repository), making the purpose immediately understandable. However, it does not differentiate from sibling tools such as generate_issue or check_duplicate_issue, so it falls short of a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives. The description does not mention prerequisites, when to prefer check_duplicate_issue first, or any context that would help an agent select this tool over generate_issue. It simply states the operation without usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_issueC
Generate a structured GitHub issue using the issue description, issue details, and repository labels.
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Type of GitHub issue | |
| labels | No | Labels selected from the repository's available GitHub labels | |
| description | Yes | Short natural-language description of the problem or request | |
| environment | No | Browser, operating system, application version, etc. | |
| actualBehavior | No | What actually happens | |
| expectedBehavior | No | What should happen | |
| additionalContext | No | Logs, screenshots, related information, or other useful context | |
| reproductionSteps | No | Steps required to reproduce the issue |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description is the only source of behavioral transparency. It fails to disclose whether the tool writes to GitHub, returns a data structure, or requires authentication, and it doesn't describe any side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, grammatically clean sentence with no filler words. However, it could have been slightly more informative while still being concise, so 4.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the rich parameter schema, the description leaves major context gaps: no output schema, no side effects, and no distinction from create_github_issue. The tool's actual function in the workflow remains ambiguous.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters with descriptions, so the baseline is 3. The description's mention of 'issue description, issue details, and repository labels' loosely maps to the schema but adds no new semantics beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'generate' and resource 'structured GitHub issue', but it doesn't differentiate from the sibling create_github_issue. 'Generate' is ambiguous about whether the tool actually creates the issue on GitHub or simply produces a structured data object.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to use generate_issue versus create_github_issue, check_duplicate_issue, or list_github_labels. There is no mention of prerequisites, workflow order, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_github_issuesA
List open issues in a GitHub repository
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | GitHub repository name | |
| owner | Yes | GitHub repository owner |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It adds the 'open' filter behavior, which is a useful behavioral detail beyond the parameters. However, it does not disclose read-only nature, pagination, rate limits, or other potential behaviors, so transparency is minimal but not absent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no unnecessary words. It effectively communicates the tool's purpose without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with two parameters, the description is adequate but minimal. It lacks any mention of return format, pagination, or other behavior that would help an agent set expectations. Given no annotations or output schema, the description provides the essential purpose but not enough context for complex decision-making.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with descriptions for both 'owner' and 'repo'. The tool description does not add any parameter-specific semantics beyond the schema, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'List' with the resource 'open issues in a GitHub repository', clearly stating what the tool does. It distinguishes itself from sibling tools like create_github_issue and list_github_labels by focusing on retrieval of open issues.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving open issues but does not explicitly state when to use this tool versus alternatives. It lacks exclusions or mention of alternative tools, so the usage context is only implied by the description and tool name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_github_labelsA
List labels available in a GitHub repository
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | GitHub repository name | |
| owner | Yes | GitHub repository owner |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It only states the basic list action; it does not disclose return format, pagination, or read-only status, though a list operation is inherently safe.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, focused sentence with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with two parameters, the description adequately conveys the operation. It does not describe return values or pagination, but the output schema is absent and the operation is straightforward.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema fully documents both parameters (owner and repo) with clear descriptions, so the description adds no additional parameter meaning. Baseline 3 applies due to high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists labels in a GitHub repository, using a specific verb and resource. It is distinct from sibling tools that focus on issues.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for its use (listing labels), but does not explicitly mention alternatives or exclusion criteria. Since siblings are all about issues, the distinction is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have clear purposes, but generate_issue and create_github_issue could be mistaken for each other. check_duplicate_issue overlaps with list_github_issues, though the description explicitly warns against calling list separately, which helps. Overall, some ambiguity remains.
Tool names mix conventions: check_duplicate_issue and generate_issue lack the 'github_' prefix, while create_github_issue, list_github_issues, and list_github_labels include it. This inconsistency makes the set feel less predictable, though the verb-noun structure is somewhat consistent.
With exactly 5 tools, the server is well-scoped for GitHub issue management. Neither too sparse nor overloaded; each tool serves a clear functional role.
The server covers issue creation, listing, labels, and duplicate detection, but lacks essential operations like updating, closing, or fetching a single issue. This creates significant gaps in the issue lifecycle that agents will need to work around.
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
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Capture feature requests and bug reports from chat into a searchable, AI-categorized backlog.
Voice-powered bug reporting with 13 MCP tools. Record bugs by talking; let AI find and fix them.
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.โฆ
Related MCP Servers
- -licenseBqualityNot gradedmaintenanceEnables AI-driven orchestration of GitHub development workflows including automated issue analysis, code generation, code review, and PR creation through multiple specialized agents. Integrates with GitHub Actions to automate the complete development process from issue to pull request.7
- FlicenseAqualityDmaintenanceEnables AI agents to create GitHub issues on explicitly allow-listed repositories using GitHub App authentication, with input validation, rate limiting, and no token exposure.1
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to automate GitHub repository management, issue tracking, and commits using natural language.10Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to list, search, and inspect issues on any public GitHub repository via natural language.MIT
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/sarim-aliii/github-issue-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server