jira-mcp-ai
Provides tools to search, read, and (with explicit gating) write Jira Cloud issues, using your Atlassian account and API token.
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-aiwhat open Jira issues are assigned to me?"
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-ai
An MCP server for Jira Cloud: it gives an MCP-capable agent (Claude Code, Claude Desktop, or any other client) tools to search, read and — behind an explicit gate — write Jira issues, using your own Atlassian account and API token.
Two things shape the design:
Writes are gated. Write tools default to describing what they would do instead of doing it. Executing requires both an opt-in configuration and an explicit flag on the call. See
docs/THREAT-MODEL.md.Jira content is untrusted input. Issue text arrives from whoever filed the ticket. It is labelled as data, never merged into the agent's instructions.
Status: pre-code. The specification in
docs/is complete and normative; the implementation is being built against it. Nothing is published to npm yet, so the registration example below will not resolve until the first release.
Requirements
Node.js ≥ 22 (env files are read with
process.loadEnvFile(), not dotenv)A Jira Cloud site and an Atlassian API token
Related MCP server: atlassian-mcp-server
Registration
// .mcp.json / claude mcp add
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "jira-mcp-ai@0.1.0"],
"env": {
"JIRA_SITE": "mycompany",
"JIRA_EMAIL": "me@example.com",
"JIRA_API_TOKEN": "…",
"JIRA_WRITE_MODE": "plan"
}
}
}
}The version is pinned on purpose: an unpinned npx -y re-resolves to whatever is
newest at spawn time, so a fresh publish could start running new code inside an
agent session with no review step. Bump the pin once you have read the changelog.
Configuration
Every setting is an environment variable with the JIRA_ prefix. The full table
— names, defaults, required-ness, and where credentials may live — is in
docs/CONFIGURATION.md; .env.example
is a fill-in-the-blanks copy.
Tools
The tool table is generated from the package definitions and inserted here.
Until then, docs/TOOLS.md is the catalog: tool names, input
and output shapes, packages, and the plan/apply contract for the write tier.
Data handling
What leaves your machine, what is written to disk, what is redacted from logs,
and what the write gate does and does not promise are documented in
docs/THREAT-MODEL.md. Credential storage and lifecycle
are in docs/AUTH.md.
To report a vulnerability, see SECURITY.md.
Development
npm install
npm run check # typecheck, lint, format, build, test, docs-lint, prod auditdocs/README.md is the index to the specification;
docs/ARCHITECTURE.md is the place to start.
Contributor conventions, the test taxonomy and the coverage gate are in
docs/TESTING.md.
License
MIT.
Jira and Atlassian are trademarks of Atlassian Pty Ltd. This project is an independent, unofficial client and is not affiliated with or endorsed by Atlassian.
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
- FlicenseAqualityCmaintenanceAn async MCP server for JIRA integration, enabling AI assistants to search, create, and manage JIRA issues via JQL and other operations.61
- Alicense-qualityBmaintenanceMCP server for Atlassian Cloud (Confluence & Jira) with seamless OAuth 2.0 authentication. Enables AI agents to document work in Confluence, manage Jira issues, and understand project context.4MIT
- FlicenseBqualityDmaintenanceMCP server that connects AI assistants to your Jira site, supporting PAT or SSO authentication for search, read, create, update, and delete operations on issues.1716
- Alicense-qualityDmaintenanceA local-only MCP server providing safe, typed Jira tools for AI agents via Atlassian ACLI, enabling search, get issue, add comment, and transition issues with policy guardrails.MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
MCP server for AI dialogue using various LLM models via AceDataCloud
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/IvanBBaev/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server