Model Context Protocol (MCP) server for Atlassian Jira Data Center with semantic search and AI-powered workflow automation.
Transform natural language queries into precise Jira API operations. Built for LLMs (Claude, GPT-4) to interact intelligently with Jira Data Center.
docker run -it \
-e JIRA_URL=https://jira.example.com \
-e JIRA_AUTH_METHOD=pat \
-e JIRA_TOKEN=your-personal-access-token \
ghcr.io/guerchele/jira-dc-mcp:latest
Create docker-compose.yml:
version: '3.8'
services:
jira-mcp:
image: guerchele/jira-dc-mcp:latest
environment:
JIRA_URL: https://jira.example.com
JIRA_AUTH_METHOD: pat
JIRA_TOKEN: your-personal-access-token
LOG_LEVEL: info
restart: unless-stopped
Then run:
docker-compose up -d
| Variable | Description | Example |
|---|---|---|
JIRA_URL | Your Jira Data Center URL | https://jira.example.com |
JIRA_AUTH_METHOD | Authentication method | pat, oauth2, oauth1, basic |
JIRA_TOKEN | Authentication token (for PAT/Basic) | your-token-here |
| Variable | Default | Description |
|---|---|---|
LOG_LEVEL | info | Logging level: debug, info, warn, error |
RATE_LIMIT_MAX_REQUESTS | 100 | Max API requests per minute |
REQUEST_TIMEOUT_MS | 30000 | Request timeout in milliseconds |
docker run -it --rm \
-e JIRA_URL=https://jira.example.com \
-e JIRA_AUTH_METHOD=pat \
-e JIRA_TOKEN=abc123xyz \
guerchele/jira-dc-mcp:latest
docker run -it -d \
--name jira-mcp \
-v ~/.jira-mcp:/root/.jira-mcp \
-e JIRA_URL=https://jira.example.com \
-e JIRA_AUTH_METHOD=pat \
-e JIRA_TOKEN=abc123xyz \
guerchele/jira-dc-mcp:latest
docker run -it --rm \
-e JIRA_URL=https://jira.example.com \
-e JIRA_AUTH_METHOD=pat \
-e JIRA_TOKEN=abc123xyz \
-e LOG_LEVEL=debug \
guerchele/jira-dc-mcp:latest
Edit your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"jira-datacenter": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"JIRA_URL=https://jira.example.com",
"-e",
"JIRA_AUTH_METHOD=pat",
"-e",
"JIRA_TOKEN=your-token",
"guerchele/jira-dc-mcp:latest"
]
}
}
}
ā
Semantic Search Engine - Natural language queries with >90% relevance
ā
Three MCP Tools - search_ids, get_id, call_id
ā
Multi-Authentication - OAuth 2.0, PAT, OAuth 1.0a, Basic Auth
ā
Production Resilient - Circuit breakers, rate limiting, retries
ā
Secure by Default - Non-root user, credential redaction
ā
Multi-Architecture - Supports linux/amd64 and linux/arm64
search_ids - Find Jira operations using natural language
{"query": "create issue", "limit": 5}
get_id - Get operation details and schema
{"operation_id": "createIssue"}
call_id - Execute Jira API operations
{"operation_id": "createIssue", "parameters": {...}}
The container includes built-in health checks:
# Check container health status
docker inspect --format='{{.State.Health.Status}}' jira-mcp
# View health check logs
docker logs jira-mcp
nodejs, UID 1001)# Check logs for errors
docker logs jira-mcp
Common causes:
JIRA_URL environment variable# Run health check manually
docker exec jira-mcp node /app/dist/healthcheck.js
# Test connectivity from container
docker exec jira-mcp wget -O- https://jira.example.com/status
LGPL-3.0 License - see LICENSEā
Contributions welcome! See CONTRIBUTING.mdā
Need help? Open an issue on GitHubā
Content type
Image
Digest
sha256:ec7524468ā¦
Size
263.8 MB
Last updated
10 months ago
docker pull guerchele/jira-dc-mcp