mcp-jira
JIRA integration server for Model Context Protocol (MCP) - enables LLMs to interact with JIRA tasks and workflows
Documentation
MCP Jira Integration
A simple Model Context Protocol (MCP) server for Jira that allows LLMs to act as project managers and personal assistants for teams using Jira. Built on the Jira REST API v3.
Features
Core MCP Tools
- create_issue - Create new Jira issues with proper formatting and ADF descriptions
- search_issues - Search issues using JQL with smart formatting and pagination
- get_sprint_status - Get comprehensive sprint progress reports with metrics
- get_team_workload - Analyze team member workloads and capacity
- generate_standup_report - Generate daily standup reports automatically
Project Management Capabilities
- Multi-Project Support: Work with multiple projects by specifying project keys dynamically
- Sprint progress tracking with visual indicators
- Team workload analysis and capacity planning
- Automated daily standup report generation
- Issue creation with proper prioritization
- Smart search and filtering of issues
Reliability
- Automatic retry with exponential backoff on rate limits (429) and transient errors (503)
- Pagination for large result sets
- Timezone-aware date handling
- Graceful handling of custom Jira statuses and issue types
Requirements
- Python 3.8 or higher
- Jira Cloud account with API token
- MCP-compatible client (like Claude Desktop)
Quick Setup
1. Clone and install:
git clone https://github.com/your-org/mcp-jira.git
cd mcp-jira
python3 -m venv .venv
source .venv/bin/activate
pip install -e .2. Configure Jira credentials:
cp .env.example .env
# Edit .env with your valuesJIRA_URL=https://your-domain.atlassian.net
JIRA_USERNAME=your.email@domain.com
JIRA_API_TOKEN=your_api_token
PROJECT_KEY=PROJ
DEFAULT_BOARD_ID=1233. Test the server:
.venv/bin/python -m mcp_jiraYou should see `Initializing MCP Jira server...` in the output. Press `Ctrl+C` to stop.
Usage Examples
Creating Issues
"Create a high priority bug for the login system not working properly"
- Auto-assigns proper issue type, priority, and formatting
Sprint Management
"What's our current sprint status?"
- Gets comprehensive progress report with metrics and visual indicators
Team Management
"Show me the team workload for john.doe, jane.smith, mike.wilson"
- Analyzes capacity and provides workload distribution
Daily Standups
"Generate today's standup report"
- Creates formatted report with completed, in-progress, and blocked items
MCP Integration
With Claude Desktop
The config file is located at:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
Add the following entry, replacing `/path/to/mcp-jira` with the absolute path where you cloned the repo:
{
"mcpServers": {
"mcp-jira": {
"command": "/path/to/mcp-jira/.venv/bin/python",
"args": ["-m", "mcp_jira"]
}
}
}> Note: Use the Python binary from inside the `.venv` folder — this ensures all dependencies are available. The `cwd` field is not required; the server resolves its configuration using absolute paths internally.
To find the correct path, run this from inside the project directory:
echo "$(pwd)/.venv/bin/python"Restart Claude Desktop after saving the config.
With Other MCP Clients
The server follows the standard MCP protocol and works with any MCP-compatible client.
Configuration
Required Environment Variables
- `JIRA_URL` - Your Jira instance URL
- `JIRA_USERNAME` - Your Jira username/email
- `JIRA_API_TOKEN` - Your Jira API token
- `PROJECT_KEY` - Default project key for operations (can be overridden per request)
Optional Settings
- `DEFAULT_BOARD_ID` - Default board for sprint operations (can be overridden per request)
- `STORY_POINTS_FIELD` - Custom field ID for Story Points (default: customfield_10026)
- `DEBUG_MODE` - Enable debug logging (default: false)
- `LOG_LEVEL` - Logging level (default: INFO)
Getting Jira API Token
1. Go to Atlassian Account Settings
2. Click "Create API token"
3. Give it a name and copy the token
4. Use your email as username and the token as password
Architecture
This implementation prioritizes simplicity and reliability:
- Single MCP server file - All tools in one place
- Standard MCP protocol - Uses official MCP SDK
- Jira REST API v3 - Uses Atlassian Document Format (ADF) for descriptions
- Rich formatting - Provides beautiful, readable reports
- Retry with backoff - Handles rate limits and transient Jira API errors automatically
- Pagination - Fetches all results for large issue sets
- Error handling - Graceful handling of Jira API issues and custom statuses
- Async support - Fast and responsive operations
Troubleshooting
Common Issues
1. "No active sprint found"
2. Authentication errors
3. Permission errors
Debug Mode
Set `DEBUG_MODE=true` in your `.env` file for detailed logging.
Development
1. Fork the repository
2. Set up a dev environment:
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"3. Run tests:
python -m pytest tests/ -v4. Submit a pull request
License
MIT License - see LICENSE file
Frequently asked questions
What is mcp-jira?
mcp-jira is JIRA integration server for Model Context Protocol (MCP) - enables LLMs to interact with JIRA tasks and workflows
How do I install mcp-jira?
Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.
Is mcp-jira open source?
Yes — it is hosted on GitHub at https://github.com/Warzuponus/mcp-jira and has 6 stars.
Related MCP tools
🙌 OpenHands: Code Less, Make More for the Model Context Protocol. Enhance AI assistants with powerful integrations. Python-based implementation.
Universal memory layer for AI Agents; Announcing OpenMemory MCP - local and secure memory management. Python-based implementation.
基于大模型搭建的聊天机器人,同时支持 微信公众号、企业微信应用、飞书、钉钉 等接入,可选择ChatGPT/Claude/DeepSeek/文心一言/讯飞星火/通义千问/ Gemini/GLM-4/Kimi/LinkAI,能处理文本、语音和图片,访问操作系统和互联网,支持基于自有知识库进行定制企业智能客服。
An LLM agent that conducts deep research (local and web) on any given topic and generates a long report with citations. Built for the Model Context Protocol to
🚀 The fast, Pythonic way to build MCP servers and clients Trusted by 19900+ developers. Trusted by 19900+ developers. Trusted by 19900+ developers.
🔥 MaxKB is an open-source platform for building enterprise-grade agents. MaxKB 是强大易用的开源企业级智能体平台。 for the Model Context Protocol. Enhance AI assistants with po
Run your own MCP server? See who uses it and what to fix.
Measure it with TrackMCP