jira-mcp
Provides tools for managing and analyzing Jira Data Center: issue search, project and sprint management, comments, worklogs, attachments, reports, and bulk operations with preview and audit.
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-mcpIs the current sprint going to make it?"
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
An MCP server for Jira Data Center. Lets Claude Desktop, Claude Code, or any MCP-compatible client search, analyse and manage Jira through its official REST API — with a permission policy, a preview step, and an audit trail in front of every change.
فارسی · 83 tools · 6 prompts · 6 skills · 579 tests
You: Is the current sprint going to make it?
Claude: Sprint 14 is at risk. 18 of 24 issues done (32/45 points) with 3 days
left, but two issues have been blocked for six days. At the current
rate it projects to 84% completion.
You: Close it, then
Claude: PREVIEW (nothing changed): would close Sprint 14; 6 issues are not
done and will be moved out: OPS-14, OPS-22, OPS-31...Why this exists
Jira's REST API answers questions like "what issues are in sprint 87". People ask questions like "is the sprint going to make it?". This server closes that gap, and tries hard not to lie while doing it:
Missing data is reported, not zeroed. No Story Points field configured? The report says "unavailable" rather than showing
0.0, which would read as the team completed nothing.Every number carries its definition. "Velocity" means different things at different companies, so each response says how it was computed —
Report.explain_metricsgives the full rule and its caveat.Heuristics name their evidence. Jira has no native "blocked" concept, so detection checks three signals and always reports which one matched. A team that records blockers in comments legitimately shows zero, and is told so.
Destructive changes preview first, reading real state rather than restating your request.
Related MCP server: MCP Atlassian
Status
Complete and in use. Version 1.0.0 — see the changelog.
Design principles
Principle | What it means here |
REST API only | No direct database access, ever. Upgrade-safe by construction. |
Domain tools | Tools are named |
One response shape | Every tool returns |
Permission guard | Each tool declares |
Preview before change | Destructive and bulk tools return a dry-run first; the real change needs |
Multi-instance | Production, staging and dev switch by config, not by code. |
Audited | Every write is appended to a JSON Lines audit log with secrets redacted. |
Tested | Every tool has unit tests against a mocked Jira — no live server needed. |
Quick start
You need Python 3.10+ and a Jira Data Center Personal Access Token (Jira 8.14+).
git clone https://github.com/Mr-pixle/jira-mcp
cd jira-mcp
uv venv && uv pip install -e ".[dev]"
cp .env.example .env # set JIRA_PROD_PAT
cp config/instances.yaml.example config/instances.yaml
$EDITOR config/instances.yaml # set your Jira base_url
uv run jira-mcp --check # validates config and credentials, contacts nothingThen run it — or let your client run it for you:
uv run jira-mcp # stdio, for a local client
uv run jira-mcp --transport http --port 8000 # HTTP, for a shared server
.envandconfig/instances.yamlare git-ignored. The first holds your token, the second your internal hostname.
Connect Claude Desktop / Claude Code (stdio)
{
"mcpServers": {
"jira": {
"command": "uv",
"args": ["run", "--directory", "/opt/jira-mcp", "jira-mcp"],
"env": { "JIRA_PROD_PAT": "your-token-here" }
}
}
}Then ask: "Check the Jira connection" → the client calls jira_system_health.
Available tools
83 tools — 57 read, 26 write. Full details in
docs/Tool-Reference.md (generated from the registry).
Domain | Read | Write |
System |
| — |
Issues |
|
|
Fields |
| — |
Projects |
|
|
Users |
| — |
Boards |
| — |
Sprints |
|
|
Comments |
|
|
Worklogs |
|
|
Attachments |
|
|
Filters |
| — |
Dashboards |
| — |
Bulk | — |
|
Reports |
| — |
eazyBI |
| — |
Regenerate the reference after adding tools:
uv run jira-mcp --generate-docs # writes docs/Tool-Reference.mdThings you can ask for today
Which issues in OPS have been in progress for more than five days? Show me the current sprint on the platform board and how it's tracking. Create a bug in OPS about the Safari login failure and assign it to Ali. Move OPS-123 to Done with resolution Fixed and log 3 hours against it. Close Sprint 14 — but tell me what's unfinished first. What does the error log attached to OPS-123 say? Is the current sprint going to make it, and why not? What's our velocity over the last six sprints — improving or declining? Give me a status roll-up across OPS, MOB and WEB. Is the work spread fairly this sprint? How exactly do you calculate velocity?
Preview before change
Destructive and high-impact tools return a preview on the first call and change nothing. The preview shows real before/after values read from Jira, not a restatement of the request:
You: Close sprint 14
Claude: [calls jira_sprint_close]
PREVIEW (nothing changed): would close sprint 'Sprint 14' (id=87);
3 issues are not done and will be moved out: OPS-2, OPS-3, OPS-7
You: Go ahead
Claude: [calls jira_sprint_close with confirm=true]
Closed sprint 'Sprint 14'.Which tools preview is a policy decision in config/permissions.yaml, not a
property of the tool — routine single-issue edits run in one step by default,
while Sprint.close, Sprint.start, *.delete and all bulk operations preview.
The audit log records previews and real changes separately.
Bulk operations
Jira Data Center exposes no REST API for bulk edits, so Bulk.* means N
individual requests. Three things follow from that, and the engine handles all
three:
Blast radius. Issues are selected by explicit keys or by JQL. A JQL matching
more than max_issues (default 50, ceiling 200) is refused outright rather
than truncated — a half-applied bulk change is worse than none.
Partial failure is normal. Ten issues succeed, one is in a status the
transition does not allow, one is in a project the account cannot write to. Every
result reports succeeded_keys and a failed list with per-issue reasons, and
next_actions hands back the exact retry call:
Bulk.transition: 8 succeeded, 2 failed (OPS-14, OPS-22).
→ To retry only those, call Bulk.transition again with
issue_keys=['OPS-14', 'OPS-22']Set stop_on_error=true when the issues must all change together — the run then
goes sequentially and halts at the first failure, leaving the rest untouched.
Notifications. Single-issue edits notify watchers. Bulk edits default to
notify_users=false: relabelling 80 issues should not send 80 emails.
Bulk.comment is the exception — Jira always notifies on a new comment, and the
preview says so.
Requests run five at a time: fast enough for 100 issues, polite enough to stay clear of Jira's rate limiter.
Reports and the semantic layer
The report tools answer questions people ask — "is the sprint going to make it?" — rather than questions the API answers. Three ideas make that work.
Custom fields are discovered, not configured. "Story Points" is
customfield_10004 on one Jira and customfield_10026 on another. The resolver
prefers the board's own estimation field — the field the team's velocity chart
already uses, so the report agrees with what they see in Jira — and falls back to
matching the field catalogue by name.
Missing data is reported, not zeroed. If no estimation field exists,
points-based sections say "unavailable" instead of showing 0.0, which would
read as the team completed nothing. Report.velocity refuses outright and
points you at the count-based alternative.
Every number carries its definition. "Velocity" and "blocked" mean different
things at different companies, so each response includes a methodology block,
and Report.explain_metrics returns the full rule and its caveat — in English or
Persian:
You: ولاسیتی رو چطور حساب میکنی؟
Claude: [jira_report_explain_metrics term="velocity"]
Computed as: for each closed sprint, the sum of the estimation field on
issues whose status category is 'done' at the time of reading...
Caveat: counts points as they stand now, not as at sprint close.Jira has no native "blocked" concept, so Report.blocked_issues checks three
signals — the Flagged field, the status name, then labels — and always reports
which one matched. A team that records blockers only in comments will
legitimately show zero, and the response says so rather than implying nothing is
stuck.
Each report documents its API cost in its description, since several make one request per issue.
eazyBI
What eazyBI actually offers. It publishes exactly one supported REST endpoint — running a saved report. Its support team has stated publicly that there is no REST API for creating or publishing reports and dashboards, on any deployment. The tools here are shaped around that reality rather than around what would be convenient.
Layer | Tools | Reliability |
Stable |
| |
Experimental |
| Internal UI routes — usually work on Data Center, degrade to |
Local |
| No eazyBI call at all |
Start with EazyBI.health. It probes what works on your installation and
reports it: whether the add-on responds at {jira}/plugins/servlet/eazybi,
which credential it accepts, whether the metadata routes are open, and — the
part you need before anything else — what account IDs exist.
Credentials are reused, not duplicated. The add-on sits behind Jira's own auth, so the Jira PAT is tried first. eazyBI's docs specify Basic auth, so a PAT may be rejected; the client then falls back to separate credentials if you have configured them, and remembers which one worked. Nothing to set up in the happy case.
Creating reports is a two-step process, honestly. Since eazyBI has no API
for it, generate_report_definition designs the report and produces the JSON
document you paste into eazyBI's Import report definition dialog. Five
templates cover the common shapes. Member names are instance-specific, so
reading a similar report first with get_report_definition turns a plausible
definition into a valid one.
On 401/403 from an internal route, the error says what it cannot know: the
route may be closed to API callers, or the credentials may be wrong, and the
response cannot distinguish them. It then names the experiment that resolves it
— run export_report with a known ID.
Context management
Jira responses are large — a single issue can be 30 KB of JSON. Two mechanisms keep results usable:
detail—compact(default) returns the triage fields;fulladds description, components, links and time tracking.Page size caps —
max_resultsis capped at 100 with a default of 25, and the requested fields are trimmed at the Jira end rather than after the fact.
Prompts and skills
Prompts appear in the client's menu as ready-made requests:
sprint_report, executive_report, risk_report, release_report,
workload_report, team_performance.
Skills (skills/) are multi-step workflows with decision points —
the difference being that a prompt has a known answer shape, while a skill's
next step depends on what the last one found:
Skill | Writes? |
| Only if asked |
| No |
| Behind a preview |
| Behind a preview |
| Behind a preview |
| No |
Deployment
sudo ./deploy/install.sh # systemd service, hardened, loopback-boundThen TLS via deploy/nginx.conf. Full instructions in the
Deployment Guide.
Development
uv run pytest # 579 tests, mocked Jira, offline
uv run pytest --live # also run tests marked 'live'
uv run python tests/integration/acceptance.py # every capability over real MCP
uv run ruff check . # lint
uv run mypy src # type check
uv run jira-mcp --generate-docs # regenerate the tool referenceSecurity notes
Secrets live only in environment variables;
instances.yamlstores variable names.HTTP transport binds to
127.0.0.1by default. SetJIRA_MCP_HTTP_TOKENand put a TLS-terminating reverse proxy in front of it before exposing it to a network.Use a dedicated Jira service account with the minimum permissions it needs — not an admin.
logs/and.envare git-ignored. Never commit them.
Documentation
Document | Language |
English | |
English | |
English | |
English (generated) | |
English | |
SECURITY — threat model and credential handling | English |
English | |
English | |
فارسی | |
فارسی | |
فارسی | |
فارسی |
Acknowledgements
Design informed by three prior projects:
ultimate-guitar/eazybi-mcp,
whose research into eazyBI's API surface shaped this project's eazyBI domain
entirely;
atlassian/atlassian-mcp-server,
whose practice of shipping skills alongside an MCP server is adopted here; and
edrich13/mcp-jira-server.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceA comprehensive MCP server for Jira, Confluence, and Bitbucket that supports both Cloud and Data Center deployments. It provides 136 tools for managing issues, searching documentation, and handling Git workflows like pull requests and pipelines.Last updated5MIT
- Alicense-qualityCmaintenanceAn MCP server that integrates with Jira and Confluence to enable AI-powered issue management, content search, and document creation. It supports both Cloud and on-premise deployments, allowing users to automate workspace tasks through natural language.Last updatedMIT
- Alicense-qualityDmaintenanceAn MCP server for interacting with Jira Cloud, providing tools for issues, search, agile boards, comments, links, attachments, and webhook notifications.Last updated181MIT
- Alicense-qualityDmaintenanceMCP server providing access to JIRA data with relationship tracking, optimized payloads, and data cleaning for AI contexts. Supports both Jira Cloud and Server/Data Center.Last updated26MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for Appcircle mobile CI/CD platform.
The MCP server for Azure DevOps, bringing the power of Azure DevOps directly to your agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Mr-pixle/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server