67 releases (16 stable)
| 2.4.0 | Aug 7, 2026 |
|---|---|
| 2.3.4 | Jul 24, 2026 |
| 1.2.0 | May 21, 2026 |
| 0.39.0 | May 16, 2026 |
#18 in #atlassian
395KB
10K
SLoC
jira-mcp
jirac-mcp exposes Jira operations over the Model Context Protocol (MCP). It is not affiliated with, endorsed by, or sponsored by Atlassian.
jira-mcp is the MCP server crate in the mulhamna/jira-commands workspace. It reuses jira-core and exposes typed Jira tools for editors, assistants, and remote MCP clients.
Install
# Homebrew (macOS / Linux)
brew tap mulhamna/tap
brew install jira-mcp
# Cargo (crates.io)
cargo install jira-mcp
# npm (Node 18+)
npm install -g @mulham28/jirac-mcp
# Scoop (Windows)
scoop bucket add mulhamna https://github.com/mulhamna/scoop-bucket
scoop install mulhamna/jirac-mcp
# From a local checkout
cargo install --path crates/jira-mcp --locked
You can also use the workspace shell installer on macOS/Linux, the PowerShell installer flow on Windows (x64 + ARM64), or download packaged release archives from GitHub Releases. Native Windows ARM64 binaries ship as jirac-mcp-windows-aarch64.zip.
Run
# Local stdio transport
jirac-mcp serve --transport stdio
# Streamable HTTP transport
jirac-mcp serve --transport streamable-http --host 127.0.0.1 --port 8787 --path /mcp
Shared configuration
The server reuses the same credentials/config as jirac:
~/.config/jira/config.tomlJIRA_PROFILEJIRA_URLJIRA_EMAILJIRA_TOKEN
You can initialize and switch credentials with:
jirac auth login
jirac auth profiles
jirac auth use work-cloud
Tool coverage
The MCP server includes tools for:
- auth status and credential updates
- diagnostics:
jira_whoami(current account id, timezone, base URL) andjira_server_info(server info + premium/Plans detection) - issue list, view, create, update, delete, clone, move (native cross-project move,
confirm: truerequired), batch flows, standups, sprint summaries, and notifications - notifications: mark scanned notifications as read by id (
jira_notifications_mark_read) - field and transition discovery
- comments (single + bulk)
- attachments: upload, list, download (writes to disk with
$HOMEguard andforce_pathopt-out), and delete (confirm: truerequired) - watchers: list, add (defaults to the current authenticated user via
/myself), and remove (confirm: truerequired) - worklog operations
- structured JQL builder:
jira_jql_buildcomposes safe JQL from aJqlParamsobject, with optionaldry_runpreview of matching issue keys - Agile boards: list (project + type filter), get, list issues (JQL + max), and list backlog
- bulk transition, bulk update, and archive flows
- plans
- raw Jira REST API requests
Notes
- Current focus is tools, not prompts/resources/UI.
- Destructive operations require
confirm: true. jira_issue_clonecan optionally delete the source issue withmove_original: true, but only whenconfirm: trueis also set.- Attachment uploads support local file paths or inline base64 payloads.
Client install helper
If you already have both jirac and jirac-mcp installed, register the MCP server into a supported client with:
jirac mcp doctor # check prereqs only
jirac mcp install # interactive picker (recommended)
The interactive flow verifies that jirac-mcp is on PATH and that Jira auth is configured, then lets you pick the client to install into. Pass --client explicitly to skip the picker in scripts:
jirac mcp install --client claude-code
jirac mcp install --client claude-desktop
jirac mcp install --client cursor
jirac mcp install --client gemini-cli
jirac mcp install --client codex
jirac mcp install --client opencode
jirac mcp install --client generic-json
Notes:
claude-codewrites user-level~/.claude.json(mcpServers); project-scope.mcp.jsonis not written by this helperclaude-desktopwrites the platform support dir (claude_desktop_config.json) — macOS Library, Windows APPDATA, Linux XDGgemini-cliandcodexdelegate to their native CLImcp addflows;opencodewrites~/.config/opencode/opencode.jsoncdirectlygeneric-jsonprints a portable JSON snippet instead of writing a filecursorremains provisional until verified in a real Cursor install
More docs
See the root README and INSTALL.md for client-specific install notes, helper target details, and workspace-level context.
Release notes
This package is released from the crates/jira-mcp lane. User-facing fixes in MCP docs, request handling, or package metadata should use a releasable Conventional Commit type such as fix(jira-mcp): ... when they need a patch release.
Dependencies
~33–53MB
~861K SLoC