An opinionated Jira MCP server built from years of real-world software development experience. Unlike generic Jira integrations, this MCP is crafted from the daily workflows of engineers and automation QC teams. You'll find sophisticated tools designed for actual development needs—like retrieving all pull requests linked to an issue, managing complex sprint transitions, or tracking development inf
Add this skill
npx mdskills install nguyenvanduocit/jira-mcpComprehensive Jira integration with 20+ well-documented tools covering real development workflows
1## Jira MCP23An opinionated Jira MCP server built from years of real-world software development experience.45Unlike generic Jira integrations, this MCP is crafted from the daily workflows of engineers and automation QC teams. You'll find sophisticated tools designed for actual development needs—like retrieving all pull requests linked to an issue, managing complex sprint transitions, or tracking development information across your entire workflow.67This isn't just another API wrapper. It's a reflection of how professionals actually use Jira: managing sprints, tracking development work, coordinating releases, and maintaining visibility across teams. Every tool is designed to solve real problems that arise in modern software development.89## Available tools1011### Issue Management12- **jira_get_issue** - Retrieve detailed information about a specific issue including status, assignee, description, subtasks, and available transitions13- **jira_create_issue** - Create a new issue with specified details (returns key, ID, and URL)14- **jira_create_child_issue** - Create a child issue (sub-task) linked to a parent issue15- **jira_update_issue** - Modify an existing issue's details (supports partial updates)16- **jira_list_issue_types** - List all available issue types in a project with their IDs, names, and descriptions1718### Search19- **jira_search_issue** - Search for issues using JQL (Jira Query Language) with customizable fields and expand options2021### Sprint Management22- **jira_list_sprints** - List all active and future sprints for a specific board or project23- **jira_get_sprint** - Retrieve detailed information about a specific sprint by its ID24- **jira_get_active_sprint** - Get the currently active sprint for a given board or project25- **jira_search_sprint_by_name** - Search for sprints by name with exact or partial matching2627### Status & Transitions28- **jira_list_statuses** - Retrieve all available issue status IDs and their names for a project29- **jira_transition_issue** - Transition an issue through its workflow using a valid transition ID3031### Comments32- **jira_add_comment** - Add a comment to an issue (uses Atlassian Document Format)33- **jira_get_comments** - Retrieve all comments from an issue3435### Worklogs36- **jira_add_worklog** - Add a worklog entry to track time spent on an issue3738### History & Audit39- **jira_get_issue_history** - Retrieve the complete change history of an issue4041### Issue Relationships42- **jira_get_related_issues** - Retrieve issues that have a relationship (blocks, is blocked by, relates to, etc.)43- **jira_link_issues** - Create a link between two issues, defining their relationship4445### Version Management46- **jira_get_version** - Retrieve detailed information about a specific project version47- **jira_list_project_versions** - List all versions in a project with their details4849### Development Information50- **jira_get_development_information** - Retrieve branches, pull requests, and commits linked to an issue via development tool integrations (GitHub, GitLab, Bitbucket)51525354## Installation5556Copy this prompt to your AI assistant:5758```59Install the Jira MCP server (https://github.com/nguyenvanduocit/jira-mcp) for my Claude Desktop or Cursor IDE. Read the MCP documentation carefully and guide me through the installation step by step.60```6162If your AI assistant cannot help with this installation, it indicates either a misconfiguration or an ineffective AI tool. A capable AI assistant should be able to guide you through MCP installation.6364## License65MIT — see `LICENSE`.6667## FOR AI6869> THIS SECTION IS FOR AI ONLY7071When working with this codebase, read these files to understand the project structure:72731. **CLAUDE.md** - Comprehensive project documentation including architecture, development commands, and coding conventions742. **main.go** - Entry point that shows how the MCP server is initialized and tools are registered753. **services/jira_client.go** - Singleton Jira client initialization and authentication764. **tools/** - Individual tool implementations following consistent patterns775. **docs/** - Detailed documentation (see structure below)7879Key concepts:80- This is a Go-based MCP server that connects AI assistants to Jira81- Each tool follows a registration + handler pattern with typed input validation82- Tools are organized by category (issues, sprints, comments, worklogs, etc.)83- All Jira operations use the `github.com/ctreminiom/go-atlassian` client library84- Development principles documented in `.specify/memory/constitution.md`8586Before making changes, review:87- **CLAUDE.md** for architecture patterns and development commands88- **.specify/memory/constitution.md** for governance principles899091## Quick start9293### 1) Get an API token94Create one at `https://id.atlassian.com/manage-profile/security/api-tokens`.9596### 2) Add to Cursor97Use Docker or a local binary (STDIO; no ports needed).9899#### Docker100```json101{102 "mcpServers": {103 "jira": {104 "command": "docker",105 "args": [106 "run", "--rm", "-i",107 "-e", "ATLASSIAN_HOST=https://your-company.atlassian.net",108 "-e", "ATLASSIAN_EMAIL=your-email@company.com",109 "-e", "ATLASSIAN_TOKEN=your-api-token",110 "ghcr.io/nguyenvanduocit/jira-mcp:latest"111 ]112 }113 }114}115```116117#### Binary118```json119{120 "mcpServers": {121 "jira": {122 "command": "/usr/local/bin/jira-mcp",123 "env": {124 "ATLASSIAN_HOST": "https://your-company.atlassian.net",125 "ATLASSIAN_EMAIL": "your-email@company.com",126 "ATLASSIAN_TOKEN": "your-api-token"127 }128 }129 }130}131```132133### 3) Try it in Cursor134- “Show my issues assigned to me”135- “What’s in the current sprint for ABC?”136- “Create a bug in ABC: Login fails on Safari”137138## Configuration139- **ATLASSIAN_HOST**: `https://your-company.atlassian.net`140- **ATLASSIAN_EMAIL**: your Atlassian email141- **ATLASSIAN_TOKEN**: API token142143Optional `.env` (if running locally):144```bash145ATLASSIAN_HOST=https://your-company.atlassian.net146ATLASSIAN_EMAIL=your-email@company.com147ATLASSIAN_TOKEN=your-api-token148```149150HTTP mode (optional, for debugging):151```bash152jira-mcp -env .env -http_port 3000153```154Cursor config (HTTP mode):155```json156{ "mcpServers": { "jira": { "url": "http://localhost:3000/mcp" } } }157```
Full transparency — inspect the skill content before installing.