🔌

Jira MCP

Productivity1,100

Manage Jira issues, projects, boards, and workflows for agile project management.

Claude DesktopCursorWindsurf

Overview

Manage Jira issues, projects, boards, and workflows for agile project management.

Setup

Run with npx:

npx -y @modelcontextprotocol/server-jira

Configuration

JIRA_HOST, JIRA_EMAIL, JIRA_API_TOKEN environment variables

Documentation

Jira MCP (Enhanced)

Overview

Jira MCP provides comprehensive integration with Atlassian Jira, enabling AI agents to manage issues, projects, boards, and workflows for agile project management.

Features

  • Issue creation, update, and transition
  • Project management
  • Board and sprint management
  • Workflow automation
  • Search and filtering (JQL)

Installation

npx -y @modelcontextprotocol/server-jira

Configuration

Set the following environment variables:

export JIRA_HOST=https://your-domain.atlassian.net
export JIRA_EMAIL=your-email@example.com
export JIRA_API_TOKEN=your_api_token

Get your API token from https://id.atlassian.com/manage-profile/security/api-tokens.

Available Tools

ToolDescription
search_issuesSearch issues with JQL
create_issueCreate a new issue
update_issueUpdate an issue
transition_issueTransition issue status
list_projectsList all projects
get_issueGet issue details

Usage Examples

Search Issues with JQL

{
  "jql": "project = PROJ AND status = 'In Progress' ORDER BY priority DESC"
}

Create an Issue

{
  "project": { "key": "PROJ" },
  "summary": "Implement user authentication",
  "issuetype": { "name": "Story" },
  "priority": { "name": "High" }
}

Pros

  • ✅ Deep Jira integration
  • ✅ JQL search support
  • ✅ Workflow management
  • ✅ Project tracking

Cons

  • ❌ Requires Atlassian account
  • ❌ Complex configuration
  • ❌ Rate limits apply

Resources