Jira MCP Server
Enables AI assistants to interact with Atlassian Jira Cloud, allowing users to manage projects, issues, comments, and workflows through natural language commands.
README
<div align="center"> <img src="assets/jira-logo.png" alt="Jira Logo" width="200"/> </div>
Jira MCP Server
A Model Context Protocol (MCP) server for interacting with Atlassian Jira. Connect AI assistants like Claude, Cursor AI, and others directly to your Jira projects, issues, and workflows.
Prerequisites
- Node.js (version 18 or higher)
- Atlassian Jira account with:
- API token - Generated from Atlassian API Tokens
- Site name - Your Jira organization name (e.g.,
mycompanyformycompany.atlassian.net)
Installation
Via npm (recommended)
npm install -g jira-mcp-server
From Source
- Install dependencies:
npm install - Build the project:
npm run build - Configure your MCP client (see below)
Configuration
For Cursor Users
Add this to your Cursor MCP configuration (~/.cursor/mcp.json):
{
"mcpServers": {
"Jira MCP": {
"command": "node",
"args": [
"/path/to/mcp-server-atlassian-jira/dist/index.js"
],
"env": {
"ATLASSIAN_SITE_NAME": "your-company",
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_api_token"
}
}
}
}
Restart Cursor to activate.
For Claude Desktop Users
Add this to your Claude configuration file (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"jira": {
"command": "node",
"args": [
"/path/to/mcp-server-atlassian-jira/dist/index.js"
],
"env": {
"ATLASSIAN_SITE_NAME": "your-company",
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_api_token"
}
}
}
}
Restart Claude Desktop to activate.
Available Tools
jira_get- Read data from any Jira API endpointjira_post- Create resources (issues, comments, etc.)jira_put- Replace resourcesjira_patch- Partially update resourcesjira_delete- Delete resourceshealth_check- Verify server configuration and connectivity
Common Use Cases
Ask your AI assistant:
- "List all projects I have access to"
- "Show me issues assigned to me that are in progress"
- "Find all high priority issues in the DEV project"
- "Get full details about issue PROJ-456 including comments"
- "Add a comment to PROJ-456: 'Code review completed'"
- "Create a new bug in the MOBILE project"
Troubleshooting
Authentication Issues
- Verify your API token is active at Atlassian API Tokens
- Check your site name format:
https://mycompany.atlassian.net→ site name ismycompany - Test credentials:
node dist/index.js get --path "/rest/api/3/myself"
Common Errors
- 403 Forbidden: Check API token permissions
- 404 Not Found: Verify project keys and issue IDs are correct
- No results: Try broader search criteria or validate JQL syntax
Integration Issues
- Cursor: Restart Cursor after updating
~/.cursor/mcp.json - Claude Desktop: Restart Claude Desktop after updating config file
FAQ
What permissions do I need?
Your Atlassian account needs access to Jira with appropriate project permissions.
Does this work with Jira Server?
Currently supports Jira Cloud only.
Is my data secure?
Yes! This tool runs entirely on your local machine and uses your own Jira credentials.
This MCP server is for research purposes only. Any data collection or monitoring will be conducted solely for security research purposes.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.