Jira MCP
Provides tools for interacting with Jira, allowing AI agents to create, read, update, move, comment on, add labels, manage attachments, and search tickets, with support for active sprint resolution and user shortcuts like 'me' for assignee.
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 MCPshow me my open tickets"
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 one-click Jira integration for your AI coding tools. Install it once and the
jira tools appear in Claude Desktop, Claude Code, Cursor, and VS Code —
create, read, update, move, comment on, and search Jira tickets straight from
your assistant. No repo to clone, no config files to edit.
Install (users)
1. Get the zip. Download jira-mcp.zip from the
Releases page (or build it — see Maintainers).
2. Unzip it, then double-click the installer:
OS | Double-click |
Windows |
|
macOS |
|
3. Follow the prompt. It asks for two things:
your Atlassian email
a Jira API token — it opens the page for you; click Create API token, name it
jira-mcp, copy, paste.
That's it. Restart any open Claude / VS Code / Cursor windows and the jira
tools are there.
Node.js is required, but you probably don't need to think about it: if it's missing, the Windows installer sets up a local copy automatically (no admin); on macOS it installs via Homebrew if available, otherwise points you to the one-click download.
Or: let Claude install it for you
If you use Claude Code, you can skip the zip entirely: grab
Setup with Claude.cmd (macOS:
Setup with Claude.command) and SETUP-WITH-CLAUDE.md,
keep them together, and double-click the launcher. Claude Code reads the playbook,
asks you for your email + token, handles anything missing (even Node.js), installs,
and registers everything — an adaptive installer that troubleshoots as it goes.
Only have the Claude desktop app? Drag SETUP-WITH-CLAUDE.md into a chat and
Claude will walk you through the steps (it can't run commands itself there).
Update
Got a newer zip? Just run the installer again. It replaces the old version, keeps your saved login (no re-entering your token), and re-connects your clients. No need to uninstall first.
Uninstall
Double-click Uninstall.cmd (Windows) or Uninstall.command (macOS). It
removes the program, your saved token, and the jira entry from every client.
A note on your token
Your API token is stored only on your machine (%APPDATA%\jira-mcp\.env on
Windows) and is personal to you — never share it; anyone with it can act as you
in Jira.
Related MCP server: Jira Context MCP Server
Maintainers
Layout
app/ the program
server.js the MCP server (the actual Jira tools)
cli.js install / uninstall / setup / register / serve
lib/paths.js per-OS locations for creds + install dir
lib/setup.js credential wizard (email + token; rest auto-derived)
lib/clients.js registers the server into each MCP client, user scope
installer/ double-click launchers + README (sit at the zip root)
build.mjs packs everything into dist/jira-mcp.zipPre-fill your Atlassian site (optional)
To save colleagues from typing your Atlassian site, drop an app/defaults.json
(gitignored, so it never enters this public repo — bundled into the zip you build):
cp app/defaults.example.json app/defaults.json
# edit it: { "site": "yourcompany.atlassian.net" }Without it the wizard simply asks for the site. Tool descriptions use a neutral
ABC project as the example placeholder.
Build the zip
cd app && npm install --omit=dev && cd ..
node build.mjs # -> dist/jira-mcp.zipDependencies are bundled into the zip, so end users don't run npm install.
Replicate on another machine
git clone https://github.com/southocean/jira-mcp.git
cd jira-mcp/app && npm install && cd ..
node build.mjsCut a release (so users can download the zip)
The repo tracks source only (the zip is a build artifact). One-time setup:
install the gh CLI and run gh auth login. Then a
release is a single command:
node release.mjs v1.1.0 # or: npm run release -- v1.1.0It builds dist/jira-mcp.zip, creates the tagged GitHub release, and uploads the
zip. The Install link always serves the newest one:
https://github.com/southocean/jira-mcp/releases/latest/download/jira-mcp.zip.
Prefer the browser? Releases → Draft a new release → tag → drag in
dist/jira-mcp.zip → publish.
How it works
No shared MCP registry exists — each client keeps its own config. The installer writes a user-scope
jiraentry into every client it finds (Claude Desktop / Cursor / VS Code config files; Claude Code via its CLI), baking in the absolutenodepath so GUI-launched apps resolve it.Credentials live in the user config dir, never in a repo. The wizard asks only for email + token and derives the cloud id, account id, and display name from the Jira API.
Program files install to
%LOCALAPPDATA%\Programs\jira-mcp(~/.local/share/jira-mcpon Linux,~/Library/Application Support/jira-mcp-appon macOS).Update = re-run installer (replace files, keep token, re-register). Uninstall = remove program, credentials, and every client entry.
Server capabilities
The active sprint is resolved at runtime (never a stale id), the default project
is optional and per-user, and me works as an assignee shortcut. Tools:
create_ticket · get_ticket · update_ticket · move_ticket ·
move_ticket_to_project · convert_to_subtask · add_comment · get_comments ·
add_label · remove_label · list_attachments · download_attachment ·
search_tickets
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.
Latest Blog Posts
- 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/southocean/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server