Jira MCP

v1.2.0Business Applicationsstable

Enables AI assistants to interact with Jira Cloud instances for comprehensive issue management including creating, updating, searching issues, managing comments, workflow transitions, and project metadata discovery. Supports JQL queries, user search,

mcpjiraapimodel-context-protocoljira-cloud
Share:
61
Stars
0
Downloads
0
Weekly
0/5

What is Jira MCP?

Jira MCP is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to enables ai assistants to interact with jira cloud instances for comprehensive issue management including creating, updating, searching issues, managing comments, workflow transitions, and project meta...

Enables AI assistants to interact with Jira Cloud instances for comprehensive issue management including creating, updating, searching issues, managing comments, workflow transitions, and project metadata discovery. Supports JQL queries, user search,

This server falls under the Business Applications category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Enables AI assistants to interact with Jira Cloud instances

Use Cases

Create, update, and search Jira issues from AI assistants.
Manage comments, workflows, and transitions automatically.
Execute JQL queries and discover project metadata.
George5562

Maintainer

LicenseMIT License
Languagejavascript
Versionv1.2.0
UpdatedMay 6, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @nexus2520/jira-mcp-server

Manual Installation

npx -y @nexus2520/jira-mcp-server

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Jira MCP

The Jira MCP Server is a JavaScript MCP server that lets AI assistants perform comprehensive Jira Cloud issue management through natural language — creating, updating, searching, and deleting issues, managing comments, executing JQL queries, handling workflow transitions, and discovering project metadata. It supports both basic authentication (email + API token) and bearer token (Personal Access Token) authentication, making it compatible with Jira Cloud and self-hosted Jira Data Center instances. Development teams can use it to let Claude or other AI agents triage backlogs, generate status reports, and automate repetitive Jira operations.

Prerequisites

  • Node.js 16 or newer installed
  • A Jira Cloud account or Jira Data Center instance
  • A Jira API token (create at https://id.atlassian.com/manage-profile/security/api-tokens) or a Personal Access Token for Data Center
  • Your Jira instance hostname (e.g. your-company.atlassian.net)
  • An MCP-compatible client such as Claude Desktop or Cursor
1

Clone the repository and install dependencies

The server is not published to npm as a standalone package, so clone it locally and build it.

git clone https://github.com/George5562/Jira-MCP-Server.git
cd Jira-MCP-Server
npm install
npm run build
2

Create a Jira API token

Log in to your Atlassian account, go to https://id.atlassian.com/manage-profile/security/api-tokens, and create a new API token. Copy it — you will not be able to see it again.

3

Note your Node.js binary path

The MCP config needs the absolute path to your node binary. Find it with the appropriate command for your OS.

# macOS/Linux
which node

# Windows
where node
4

Add the server to your MCP client configuration

Open claude_desktop_config.json and add the jira-server entry. Replace the paths and credentials with your real values.

{
  "mcpServers": {
    "jira-server": {
      "command": "/usr/local/bin/node",
      "args": ["/path/to/Jira-MCP-Server/build/index.js"],
      "env": {
        "JIRA_HOST": "your-instance.atlassian.net",
        "JIRA_EMAIL": "[email protected]",
        "JIRA_API_TOKEN": "your-api-token-here",
        "JIRA_AUTH_TYPE": "basic"
      }
    }
  }
}
5

Restart your MCP client and verify

Fully quit and relaunch Claude Desktop, then ask it to list projects or search for issues to confirm the connection.

Jira MCP Examples

Client configuration

Example claude_desktop_config.json for Jira Cloud using basic auth (email + API token). For Jira Data Center with a PAT, set JIRA_AUTH_TYPE to bearer and omit JIRA_EMAIL.

{
  "mcpServers": {
    "jira-server": {
      "command": "/usr/local/bin/node",
      "args": ["/path/to/Jira-MCP-Server/build/index.js"],
      "env": {
        "JIRA_HOST": "your-instance.atlassian.net",
        "JIRA_EMAIL": "[email protected]",
        "JIRA_API_TOKEN": "your-api-token-here",
        "JIRA_AUTH_TYPE": "basic"
      }
    }
  }
}

Prompts to try

These prompts cover the core Jira operations the server supports.

- "List all issues assigned to me in the BACKEND project that are currently In Progress."
- "Create a new bug titled 'Login page throws 500 on empty password' in project WEBAPP with high priority."
- "Search for all open issues with label 'performance' using JQL: project = MYPROJ AND labels = performance AND status != Done."
- "Move issue WEBAPP-142 to the 'In Review' status."
- "Add a comment to issue BACKEND-88 saying the fix has been deployed to staging."

Troubleshooting Jira MCP

Authentication error 401 when connecting to Jira

Double-check JIRA_EMAIL and JIRA_API_TOKEN. API tokens are not the same as your account password. Regenerate the token at https://id.atlassian.com/manage-profile/security/api-tokens and update the config. For Data Center, use JIRA_AUTH_TYPE=bearer with a Personal Access Token and omit JIRA_EMAIL.

Server fails to start — 'Cannot find module' error

Run 'npm run build' inside the Jira-MCP-Server directory to compile TypeScript before pointing your MCP client at the build/index.js path. Also confirm the absolute path in the args array matches where you cloned the repo.

JQL search returns unexpected or empty results

Test the JQL query directly in Jira's issue search UI (Filters > Advanced search) to confirm it is valid before using it through the MCP. Also check that JIRA_HOST does not include 'https://' — it should be just the hostname (e.g. company.atlassian.net).

Frequently Asked Questions about Jira MCP

What is Jira MCP?

Jira MCP is a Model Context Protocol (MCP) server that enables ai assistants to interact with jira cloud instances for comprehensive issue management including creating, updating, searching issues, managing comments, workflow transitions, and project metadata discovery. supports jql queries, user search, It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Jira MCP?

Install via npm with the command: npx -y @nexus2520/jira-mcp-server. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Jira MCP?

Jira MCP works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Jira MCP free to use?

Yes, Jira MCP is open source and available under the MIT License license. You can use it freely in both personal and commercial projects.

Jira MCP Alternatives — Similar Business Applications Servers

Looking for alternatives to Jira MCP? Here are other popular business applications servers you can use with Claude, Cursor, and VS Code.

n8n

189.1k

A comprehensive MCP server that provides full control over n8n automation workflows through natural language. It offers 43 tools for managing workflows, executions, credentials, and data tables, with safety features like write-mode protection and dou

LobeHub

77.5k

🤯 LobeHub is your Chief Agent Operator, organizing your agents into 7×24 operations by hiring, scheduling, and reporting on your entire AI team.

Jeecgboot

46.4k

AI 低代码平台,「低代码 + 零代码」双模式驱动:低代码一键生成前后端代码,零代码 5 分钟搭建系统,AI Skills 一句话画流程、设计表单、生成整套系统。内置 AI聊天、知识库、流程编排、MCP插件等,兼容主流大模型。引领「AI 生成 → 在线配置 → 代码生成 → 手工合并->AI修改」开发模式,消除 Java 项目 80% 的重复工作,提效而不失灵活。

CowAgent

44.7k

CowAgent (chatgpt-on-wechat) 是基于大模型的超级AI助理,能主动思考和任务规划、访问操作系统和外部资源、创造和执行Skills、通过长期记忆和知识库不断成长,比OpenClaw更轻量和便捷。同时支持微信、飞书、钉钉、企微、QQ、公众号、网页等接入,可选择DeepSeek/OpenAI/Claude/Gemini/ MiniMax/Qwen/GLM/LinkAI,能处理文本、语音、图片和文件,可快速搭建个人AI助理和企业数字员工。

Minds Platform

39.2k

Platform dedicated to building an open foundation for applied Artificial Intelligence, designed for people seeking production-ready AI systems they can truly control, extend and deploy anywhere.

Astrbot

32.8k

AI Agent Assistant & development framework that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨

Browse More Business Applications MCP Servers

Explore all business applications servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "jira-mcp-server": { "command": "npx", "args": ["-y", "@nexus2520/jira-mcp-server"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Jira MCP?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides