GitHub Issue Manager
Allows managing GitHub issues, including listing and creating issues with titles, descriptions, and labels.
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 Managerlist open issues in 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 Issue Manager - Custom MCP Server
A custom Model Context Protocol (MCP) server written in Node.js and TypeScript that integrates with the GitHub REST API to allow LLM agents (such as Cursor, Claude Desktop, and other MCP clients) to manage repository issues directly.
π οΈ Expose Tools & Features
This MCP server exposes the following tools to the AI assistant:
list_issues: Retrieves a clean, formatted list of open, closed, or all issues in any specific GitHub repository. It handles parsing and filters out unnecessary noise to optimize the AI's token usage.create_issue: Opens a new issue in a repository with custom titles, descriptions, and labels.
Related MCP server: GitHub MCP Server
βοΈ How it Works under the Hood
[ User Prompt ]
β
βΌ (Stdin/Stdout streams)
[ MCP Client (e.g. Cursor / Claude) ]
β
βΌ (Stdio Transport)
[ index.js (This Server) ] βββΊ Routes requests to handlers.ts
β
βΌ (GitHub API Client / Octokit)
[ GitHub Platform ] βββΊ Performs operations using Personal Access TokenCommunication transport: Uses standard input/output streams (
stdio) to send and receive JSON-RPC messages between the AI client and this server.Authentication: Authenticates securely using a Personal Access Token (PAT) configured via environment variables.
π Setup & Installation
1. Prerequisites
Make sure you have Node.js (v18+) and npm installed.
2. Install Dependencies
Navigate to the project directory and install the packages:
npm install3. Configure Credentials
Create a .env file in the root folder of the project:
GITHUB_PERSONAL_ACCESS_TOKEN=your_github_personal_access_token_here4. Build the Server
Compile the TypeScript code to runnable JavaScript:
npm run buildπ Connecting to AI Clients
Claude Desktop
Add the following block to your %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"github-issue-manager": {
"command": "node",
"args": [
"C:/Users/HP/Desktop/mcp-server/dist/index.js"
]
}
}
}Cursor
Go to Settings -> Features -> MCP -> Add New MCP Server:
Name:
github-issue-managerType:
stdioCommand:
node C:/Users/HP/Desktop/mcp-server/dist/index.js
Available Tools
2 toolscreate_issueB
Create a new issue in a GitHub repository.
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | The description of the issue. | |
| repo | Yes | The name of the repository. | |
| owner | Yes | The owner of the repository. | |
| title | Yes | The title of the issue. | |
| labels | No | Tags/labels to assign to the issue. |
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 'create a new issue' with no disclosure of side effects, return behavior, or error handling. For a mutation tool, more detail is expected.
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, clear sentence with no unnecessary words. It is front-loaded and efficiently conveys the core purpose.
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?
Given no output schema, the description should have at least hinted at the return value (e.g., the created issue object) or any other behavioral details. The current description is too minimal for a tool with 5 parameters and no output schema.
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 for all 5 parameters, so the schema already documents each parameter's meaning. The description adds no additional context beyond what the schema provides, meeting baseline expectations.
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 verb 'create' and the resource 'a new issue in a GitHub repository', making the purpose unambiguous. It distinguishes clearly from the sibling tool 'list_issues' which is for listing.
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 no guidance on when to use this tool vs alternatives or any prerequisites. While the sibling 'list_issues' is different enough not to cause confusion, there is no explicit usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_issuesC
List open or closed issues in a GitHub repository.
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | The name of the repository. | |
| owner | Yes | The owner of the repository (username or org). | |
| state | No | The state of the issues (default: open). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It only says 'list' implying read-only, but lacks details on pagination, authentication requirements, or whether results are limited to a default state (open vs all).
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 is front-loaded and efficient. It could include more useful details without becoming overly verbose.
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?
No output schema exists, so the description should explain return values or pagination. It does not. The tool is simple but missing common context like default state behavior and result format.
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?
Schema description coverage is 100%, so the parameter information is already complete in the schema. The description adds minimal value beyond rephrasing 'open or closed', which matches the state enum.
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 issues in a GitHub repository with filtering by open or closed state. It distinguishes from sibling create_issue. However, it does not mention the 'all' option for state, slightly limiting precision.
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 provided on when to use this tool vs alternatives. While sibling create_issue is different, there is no context about pagination, rate limits, or appropriate use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
v1.0.0- First observed
create_issue - First observed
list_issues
TDQS
The two tools have clearly distinct purposes: one creates issues, the other lists them. No overlap or ambiguity.
Both tools follow a consistent verb_noun pattern (create_issue, list_issues) with proper snake_case naming.
Only 2 tools for an issue manager is too few to be useful. A typical issue server would need at least 5-10 tools for basic operations.
Severely incomplete: missing update, delete, get single issue, comment, label, and search operations. The surface cannot handle basic issue lifecycle workflows.
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
Access the GitHub API, enabling file operations, repository management, search functionality, andβ¦
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Manage repositories, users, releases, and automate GitHub workflows
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
130
Related MCP Servers
- AlicenseBqualityFmaintenanceEnables LLMs to interact with GitHub issues by providing details as tasks, allowing for seamless integration and task management through GitHub's platform.13014MIT
- AlicenseAqualityNot gradedmaintenanceEnables AI agents to interact with GitHub repositories through the GitHub REST API for managing files, issues, and repository metadata. It supports both read operations like searching code and write operations such as creating repositories and updating issue comments.9-
- FlicenseCqualityBmaintenanceEnables AI assistants to interact with GitHub repositories via the REST API, supporting repository listing, detail retrieval, and issue management.2-
- AlicenseNot gradedqualityCmaintenanceEnables LLM agents to search, read, and create GitHub issues and pull requests via natural language, using the GitHub API.1MIT
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/preethi6379/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server