Provides tools for managing Jira issues, projects, and workflows, including creating, updating, and deleting tickets, searching with JQL, assigning tasks, and transitioning issue status through the Jira Cloud REST API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Jira MCP Integrationlist open issues in the PROJ project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π Jira MCP Integration
Cursor AI and other agents write amazing code. In enterprises, tasks are given in instruments like Jira, GitHub Issues, Azure DevOps. AI needs access to such instruments.
This open-source solution helps AI agents work with Jira data.
π Public Instance
Available at
Just provide your Jira credentials. We don't store any data.
Architecture
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ
β AI Agent ββββββΆβ MCP Server ββββββΆβ Jira Cloud β
β (Cursor/etc) βββββββ jira-mcp βββββββ REST API β
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββFeatures
β Get list of projects
β Get list of tasks with details
β Get specific task with descriptions
β Create new tickets
β Update existing tickets
β Delete tickets
β Search using JQL
β Assign tasks to users
β Transition task status
Quick Start
Option 1: Use Public Instance
Go to https://jira-mcp.koveh.com and connect with your Jira credentials.
Option 2: Run with Docker
git clone https://github.com/Koveh/jira-mcp.git
cd jira-mcp
docker-compose up -dAccess at http://localhost:4200
Option 3: Run Locally
git clone https://github.com/Koveh/jira-mcp.git
cd jira-mcp
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
python http_server.pyGet Jira API Token
Go to https://id.atlassian.com/manage-profile/security/api-tokens
Click "Create API token"
Copy the token
Usage
Add to Cursor IDE (Local MCP)
Clone and set up virtual environment:
git clone https://github.com/Koveh/jira-mcp.git
cd jira-mcp
# Create virtual environment (required for mcp package)
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# Install dependencies
pip install -r requirements.txtGet your Jira API token from: https://id.atlassian.com/manage-profile/security/api-tokens
Add to
~/.cursor/mcp.json(macOS/Linux) or%USERPROFILE%\.cursor\mcp.json(Windows):
{
"mcpServers": {
"jira": {
"command": "/full/path/to/jira-mcp/venv/bin/python",
"args": ["/full/path/to/jira-mcp/mcp_server.py"],
"env": {
"JIRA_BASE_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "your-email@example.com",
"JIRA_API_TOKEN": "your-api-token-from-step-2"
}
}
}
}Important: Use the full path to the Python interpreter inside the venv (
venv/bin/pythonon Linux/macOS,venv\Scripts\python.exeon Windows). This ensures themcppackage is available.
Restart Cursor (Cmd/Ctrl+Shift+P β "Developer: Reload Window")
You'll have these tools available:
Tool | Description |
| Connect to Jira instance |
| List all projects |
| Get issues from project |
| Get specific issue details |
| Create new issue |
| Update existing issue |
| Delete issue |
| Search with JQL |
| Get current user info |
REST API Usage
# 1. Connect and get token
curl -X POST https://jira-mcp.koveh.com/api/connect \
-H "Content-Type: application/json" \
-d '{
"base_url": "https://your-domain.atlassian.net",
"email": "your-email@example.com",
"api_token": "your-api-token"
}'
# Response includes token for subsequent requests
# {"status": "connected", "token": "eyJ...", ...}
# 2. Use token for API calls
curl https://jira-mcp.koveh.com/api/projects \
-H "Authorization: Bearer YOUR_TOKEN"
# 3. Create issue
curl -X POST https://jira-mcp.koveh.com/api/issues \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"project": "PROJ", "summary": "New task"}'CLI Usage
export JIRA_BASE_URL=https://your-domain.atlassian.net
export JIRA_EMAIL=your-email@example.com
export JIRA_API_TOKEN=your-api-token
python cli.py whoami # Show current user
python cli.py projects # List projects
python cli.py list PROJ # List issues
python cli.py get PROJ-123 # Get issue details
python cli.py create PROJ "Summary" # Create issue
python cli.py update PROJ-123 -s "New" # Update issue
python cli.py delete PROJ-123 # Delete issue
python cli.py search "status='Done'" # Search with JQLPython Client
from jira_client import JiraClient, JiraConfig
config = JiraConfig(
base_url="https://your-domain.atlassian.net",
email="your-email@example.com",
api_token="your-api-token"
)
client = JiraClient(config)
# Get projects
projects = client.get_all_projects()
# Create issue
issue = client.create_issue("PROJ", "Summary", "Description")
# Search
results = client.search_issues("status = 'In Progress'")API Endpoints
Method | Endpoint | Description |
GET |
| Health check |
POST |
| Connect and get token |
GET |
| Get current user |
GET |
| List all projects |
GET |
| Get project issues |
GET |
| Get issue details |
POST |
| Create issue |
PUT |
| Update issue |
DELETE |
| Delete issue |
GET |
| Search with JQL |
Project Structure
jira-mcp/
βββ jira_client.py # Core Jira API wrapper
βββ mcp_server.py # MCP server (stdio transport)
βββ http_server.py # HTTP/REST server
βββ cli.py # Command-line interface
βββ Dockerfile # Docker image
βββ docker-compose.yml # Docker Compose config
βββ requirements.txt # Python dependencies
βββ examples/ # Usage examples
β βββ cursor_mcp_config.json
β βββ api_usage.sh
βββ tests/ # Test scripts
βββ test_jira.py
βββ demo.pySelf-Hosting with Docker
# Build and run
docker-compose up -d
# Or manually
docker build -t jira-mcp .
docker run -d -p 4200:4200 --name jira-mcp jira-mcpWith nginx reverse proxy
server {
server_name jira-mcp.yourdomain.com;
location / {
proxy_pass http://127.0.0.1:4200;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}SSL with Certbot
certbot --nginx -d jira-mcp.yourdomain.comSecurity
π We don't store any credentials or data
π Credentials are only used for direct Jira API calls
π€ Use API tokens (not passwords)
π Tokens can be revoked anytime at id.atlassian.com
License
MIT
Author
DHW Team - koveh.com
Made with β€οΈ for the AI-powered development community