
JIRA MCP Server for Cursor
A Model Context Protocol server that integrates JIRA directly into Cursor IDE, allowing users to view assigned issues, get detailed information on specific tickets, and convert JIRA issues into local tasks without leaving their editor.
README
<div align="center">
🔗 JIRA MCP Server
<p align="center"> <b>A powerful Model Context Protocol (MCP) server that brings JIRA integration directly to any editor or application that supports MCP</b> </p>
</div>
✨ Features
- 📋 Access JIRA Directly From Cursor
- View your assigned issues without leaving your IDE
- Get detailed information on specific issues with one command
- Convert JIRA issues into local tasks seamlessly
🚀 Quick Start
Installation
# Clone the repository
git clone https://github.com/Dsazz/mcp-jira.git
cd mcp-jira
# Install dependencies
bun install
# Set up environment variables
cp .env.example .env
# Edit .env with your JIRA credentials
Configuration
Create a .env
file with the following variables:
JIRA_HOST=https://your-instance.atlassian.net
JIRA_USERNAME=your-email@example.com
JIRA_API_TOKEN=your-jira-api-token-here
🔑 Important Note About JIRA API Tokens
- Tokens may contain special characters, including the
=
sign- Place the token on a single line in the
.env
file- Do not add quotes around the token value
- Paste the token exactly as provided by Atlassian
🛠️ Development Tools
Code Quality Tools
The project uses Biome for code formatting and linting, replacing the previous ESLint setup. Biome provides:
- Fast, unified formatting and linting
- TypeScript-first tooling
- Zero configuration needed
- Consistent code style enforcement
To format and lint your code:
# Format code
bun format
# Check code for issues
bun check
# Type check
bun typecheck
MCP Inspector
<details> <summary>Click to expand MCP Inspector details</summary>
The MCP Inspector is a powerful tool for testing and debugging your MCP server.
# Run the inspector (no separate build step needed)
bun run inspect
The inspector automatically:
- Loads environment variables from
.env
- Cleans up occupied ports (5175, 3002)
- Builds the project when needed
- Starts the MCP server with your configuration
- Launches the inspector UI
Visit the inspector at http://localhost:5175?proxyPort=3002
If you encounter port conflicts:
bun run cleanup-ports
Debugging with the Inspector
The inspector UI allows you to:
- View all available MCP capabilities
- Execute tools and examine responses
- Analyze the JSON communication
- Test with different parameters
For more details, see the MCP Inspector GitHub repository.
</details>
Integration with Claude Desktop
<details> <summary>Click to expand Claude Desktop integration</summary>
Test your MCP server directly with Claude:
-
Build:
bun run build # You must build the project before running it
-
Configure Claude Desktop:
nano ~/Library/Application\ Support/Claude/claude_desktop_config.json
-
Add the MCP configuration:
{ "mcpServers": { "JIRA Tools": { "command": "node", //or "bun" "args": ["/absolute/path/to/your/project/dist/index.js"], "env": { "JIRA_USERNAME": "your-jira-username", "JIRA_API_TOKEN": "your-jira-api-token", "JIRA_HOST": "your-jira-host.atlassian.net" } } } }
-
Restart Claude Desktop and test with:
What time is it right now?
or
Show me my assigned JIRA issues.
</details>
🔌 Integration with Cursor IDE
⚠️ Important: You must build the project with
bun run build
before integrating with Cursor IDE or Claude Desktop.
Add this MCP server to your Cursor IDE's MCP configuration:
{
"mcpServers": {
"JIRA Tools": {
"command": "node", // or "bun"
"args": ["/absolute/path/to/your/project/dist/index.js"],
"env": {
"JIRA_USERNAME": "your-jira-username",
"JIRA_API_TOKEN": "your-jira-api-token",
"JIRA_HOST": "your-jira-host.atlassian.net"
}
}
}
}
🧰 Available Tools
JIRA Tools
Tool | Description | Parameters | Returns |
---|---|---|---|
jira_get_assigned_issues |
Retrieves all issues assigned to you | None | Markdown-formatted list of issues |
jira_get_issue |
Gets detailed information about a specific issue | issueKey : Issue key (e.g., PD-312) |
Markdown-formatted issue details |
jira_create_task |
Creates a local task from a JIRA issue | issueKey : Issue key (e.g., PD-312) |
Markdown-formatted task |
📁 Project Structure
src/
├── core/ # Core functionality and configurations
├── features/ # Feature implementations
│ └── jira/ # JIRA API integration
│ ├── api/ # JIRA API client
│ ├── formatters/ # Response formatters
│ └── tools/ # MCP tool implementations
└── test/ # Test utilities
NPM Scripts
Command | Description |
---|---|
bun dev |
Run the server in development mode with hot reload |
bun build |
Build the project for production |
bun start |
Start the production server |
bun format |
Format code using Biome |
bun lint |
Lint code using Biome |
bun check |
Run Biome checks on code |
bun typecheck |
Run TypeScript type checking |
bun test |
Run tests |
bun inspect |
Start the MCP Inspector for debugging |
bun cleanup-ports |
Clean up ports used by the development server |
📝 Contributing
We welcome contributions! Please see our Contributing Guide for details on:
- Development workflow
- Branching strategy
- Commit message format
- Pull request process
- Code style guidelines
📘 Resources
📄 License
MIT © Stanislav Stepanenko
<div align="center"> <sub>Built with ❤️ for a better developer experience</sub> </div>
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.
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.
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.

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.