MCP Hub
Back to servers

Issue Tracker MCP

Enables seamless Jira issue and sprint management directly from the terminal or IDE without context switching. Supports full issue lifecycle operations including creation, updates, and search, plus sprint planning, commenting, and project analytics through natural language commands.

glama
Updated
Apr 3, 2026

Issue Tracker MCP

Stop context switching between code and Jira.

MCPize License: MIT

Quick Start

Add to your MCP client config:

{
  "mcpServers": {
    "issue-tracker": {
      "url": "https://your-cloud-run-url/mcp"
    }
  }
}

Before / After

Before: Open browser, navigate to Jira, find the project, click New Issue, fill in fields, copy the ticket ID back into your terminal.

After:

Input:

{
  "title": "Auth token expires too early on mobile",
  "type": "bug",
  "priority": "high",
  "project": "WEBAPP",
  "assignee": "alice"
}

Output:

{
  "message": "Issue created: ISS-1",
  "issue": {
    "id": "ISS-1",
    "title": "Auth token expires too early on mobile",
    "status": "todo",
    "priority": "high",
    "type": "bug",
    "project": "WEBAPP",
    "assignee": "alice",
    "createdAt": "2026-04-03T12:00:00.000Z"
  }
}

Tools

ToolWhat it does
create_issueCreate a new issue with title, type, priority, and project
list_issuesList and filter issues by status, priority, assignee, or sprint
get_issueFetch full details for a single issue including all comments
update_issueChange status, assignee, priority, or any other field
delete_issuePermanently remove a duplicate or mistaken issue
add_commentAppend a comment to an issue with author and timestamp
create_sprintCreate a sprint with name, goal, start date, and end date
list_sprintsList sprints filtered by project or status
add_to_sprintMove one or more issues into a sprint for planning
search_issuesFull-text search across issue titles and descriptions
get_sprint_boardKanban view of a sprint with issues grouped by status column
get_project_statsProject health report: counts by status, priority, and type

Who is this for?

  • Developers who want to log bugs and feature requests without leaving the terminal
  • Engineering leads who need standup summaries and sprint boards on demand
  • Teams who want lightweight issue tracking without paying for a SaaS subscription

Health Check

GET /
GET /health

Response: { "status": "ok", "server": "issue-tracker", "version": "1.0.0", "tools": 12 }

Built by

Built by Mastermind HQ

License

MIT

Reviews

No reviews yet

Sign in to write a review