jira-mcp
Provides tools for interacting with Jira Cloud, allowing agents to create issues and subtasks, read and search issues with JQL, explore agile boards and swimlanes, move issues through workflow transitions, add comments, and attach files.
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-mcpCreate a bug in ABC titled: Login fails on Safari"
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
A Model Context Protocol server for Jira Cloud. Create issues and subtasks, read issues, search with JQL, walk agile boards and their swimlanes, move issues through their workflow, comment, and attach files.
Authenticates with an Atlassian account email and an API token, so it runs headless — no OAuth, no browser round-trip, no interactive consent.
Install
Nothing to install. Point your MCP client at the package and let npx fetch it:
{
"mcpServers": {
"jira": {
"type": "stdio",
"command": "npx",
"args": ["-y", "github:skurekjakub/jira-mcp#v1.0.0"],
"env": {
"NPM_CONFIG_ALLOW_GIT": "root",
"JIRA_SITE": "your-team.atlassian.net",
"JIRA_CLOUD_ID": "00000000-0000-0000-0000-000000000000",
"JIRA_PROJECT_KEY": "ABC",
"JIRA_EMAIL": "${JIRA_EMAIL}",
"JIRA_API_TOKEN": "${JIRA_API_TOKEN}"
}
}
}
}The build artifact is committed and the runtime dependencies are inlined into it, so installing clones and links — no build step, no packages fetched, and no install script to approve.
NPM_CONFIG_ALLOW_GIT
npm 12 defaults allow-git to none,
so without this npm refuses the install with EALLOWGIT — "Fetching packages
of type git have been disabled". Setting it in the server's env block scopes
the exemption to this one subprocess, which leaves git fetching disabled for
every other install on the machine. root permits it for the package being
installed but not for anything it might depend on; all lifts the restriction
entirely and is not needed here. On npm 11 and older the variable is ignored.
Installing once instead
npx re-resolves the git ref on every start, which costs a few seconds and a
network round-trip. To avoid both:
npm install -g --allow-git=root github:skurekjakub/jira-mcpthen use "command": "jira-mcp" with no args and no NPM_CONFIG_ALLOW_GIT.
Upgrading is then a manual re-run of that command.
Configuration
Every setting comes from the environment. There is no config file, and the
server reads no .env — an MCP client passes these in the env block above.
Variable | Required | Description |
| yes | Site host, e.g. |
| yes | Tenant id — see below |
| yes | Project |
| yes | Atlassian account email the API token belongs to |
| yes | API token, from Atlassian account settings |
| no | Directory |
| no | Pins |
Find your cloud id with:
curl -s https://your-team.atlassian.net/_edge/tenant_infoKeeping the token out of version control
A committed MCP config must not contain the token itself. Claude Code
expands ${VAR} references in command,
args, env, url, and headers, so the config names a variable and the
value lives elsewhere — a shell profile, or a settings file that is not
committed.
A reference that nothing expands is not an error: Claude Code passes the
literal text ${JIRA_API_TOKEN} through to the server. This server rejects a
value of that shape at startup and names the variable, rather than sending it
to Jira and returning an opaque 401.
Tools
jira_create_issue
Create an issue in JIRA_PROJECT_KEY.
Parameter | Type | Required | Description |
| string | yes | Issue title |
| string | yes | Plain text, converted to ADF (paragraphs split on blank lines) |
| string | no | e.g. |
| string[] | no | Optional labels |
| string | no | Link under a parent, e.g. an epic — valid only if the project's issue-type hierarchy allows it |
jira_create_subtask
Create a subtask under an existing issue.
Parameter | Type | Required | Description |
| string | yes | Parent issue key, e.g. |
| string | yes | Subtask title |
| string | no | Plain text, converted to ADF |
| string[] | no | Optional labels |
jira_get_issue
Fetch an issue's summary, description, type, status, parent, subtasks, issue links, and fix versions.
Parameter | Type | Required | Description |
| string | yes | Issue key, e.g. |
| string[] | no | Additional field ids (e.g. |
jira_search_issues
Search with JQL, paginated.
Parameter | Type | Required | Description |
| string | yes | JQL query |
| number | no | Page size, 1–100 (default 50) |
| string | no | Token from a previous page |
| boolean | no | Include each issue's description, flattened to text |
| string[] | no | Additional field ids returned raw under |
jira_get_board
Report an agile board's layout — columns, quick filters, and swimlanes, each
with its JQL. Run it before jira_board_issues to learn the names that tool
accepts. The board id is the boards/<id> segment of a board URL.
Swimlanes come from GreenHopper's internal API; Atlassian publishes no supported endpoint for them.
Parameter | Type | Required | Description |
| number | yes | Numeric board id, e.g. |
jira_board_issues
List the issues currently on a board, grouped by swimlane. Reproduces the board view: the board's own filter, its kanban sub-filter, any quick filters named, and extra JQL.
Each issue lands in exactly one swimlane — the first, in board order, whose query matches it. Requesting a subset of swimlanes still evaluates the lanes above them, so their claim on an issue holds.
Parameter | Type | Required | Description |
| number | yes | Numeric board id |
| string[] | no | Swimlane names or ids to return (case-insensitive). Omit for every swimlane |
| string[] | no | Quick-filter names or ids, ANDed together |
| string | no | Extra JQL ANDed onto the board filter |
| boolean | no | Apply the board's kanban sub-filter (default |
| number | no | Per-swimlane cap, 1–1000 (default 200). Each lane reports |
| boolean | no | Return only issue keys per swimlane (default |
| string[] | no | Additional field ids returned raw per issue under |
jira_list_transitions
List the workflow transitions currently available on an issue. Transition names
and ids are workflow-specific — call this before jira_transition_issue.
Parameter | Type | Required | Description |
| string | yes | Issue key |
jira_transition_issue
Move an issue through its workflow. Matches transitionName case-insensitively
against the issue's available transitions; fails with the valid list if nothing
matches.
Parameter | Type | Required | Description |
| string | yes | Issue key |
| string | yes | Target transition name, e.g. |
| string | no | Resolution to set — only needed if the transition's screen requires one |
| string | no | Comment added as part of the transition |
jira_add_comment
Add a comment. The body uses Jira wiki markup (h3. for headings, {{code}}
for inline code, {code:lang}…{code} for blocks, bq. for blockquotes). Use
real newlines, not literal \n escapes.
Parameter | Type | Required | Description |
| string | yes | Comment body in Jira wiki markup |
| string | conditional | Hidden when |
jira_add_attachment
Attach a file. The file must sit in JIRA_ATTACHMENTS_DIR; a name escaping that
directory is refused.
Parameter | Type | Required | Description |
| string | yes | Name of a file in the attachments directory |
| string | conditional | Hidden when |
Transports
stdio by default. --transport http --port <n> serves the same tools over a
stateless Streamable HTTP transport at /mcp, with a health check at /health.
Development
npm install
npm test # vitest
npm run lint # tsc --noEmit
npm run build # webpack -> dist/bundle.jsdist/bundle.js is committed so installs need no build step. CI rebuilds it on
every push to main and commits the result, so it cannot drift from src/.
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 Connectors
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Confluence MCP — wraps the Confluence Cloud REST API v2 (OAuth)
Search, document and execute authenticated API calls across 700+ apps via one MCP server
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/skurekjakub/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server