
github-issue-manager
MCP server created with MCPize
github
issues
mcp
|Overview
github-issue-manager is an MCP server that exposes GitHub issue management functions via API tools. It allows AI models and scripts to interact directly with repository issues without handling GitHub authentication directly.
Key Capabilities
- list_issues: Retrieves issues from a repository, filtered by state (open/closed), labels, assignee, or keywords.
- create_issue: Generates new issues specifying title, body, assignees, labels, and milestone.
- get_issue: Fetches detailed information for a specific issue by its number.
- update_issue: Edits issue fields including title, body, state, labels, assignees, and comments.
- close_issue: Marks an issue as closed, optionally adding a resolution comment.
These capabilities cover standard GitHub Issues API endpoints adapted for MCP usage.
Use Cases
- Bug triage automation: Use list_issues to fetch open bugs, then update_issue to assign based on labels and close_issue after fixes.
- Feedback to issues: Parse user reports with AI and call create_issue to log them with auto-generated titles and bodies.
- Sprint cleanup: list_issues for milestone items, update_issue to reassign unresolved ones, and close_issue for completed tasks.
- Reporting dashboards: Regularly invoke list_issues and get_issue to aggregate metrics on issue velocity and status.
Who This Is For
Software developers maintaining multiple repos, DevOps teams scripting workflows, and AI engineers building GitHub-integrated agents. Ideal for CI/CD pipelines or chatbots that handle issue updates.
PlaygroundUpdated Mar 19, 2026