Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Multi-Jira

FreeNot checked

Connects to multiple Jira instances through a single server.

GitHubEmbed

About

Connects to multiple Jira instances through a single server.

README

CI

Multi-account Jira MCP server. Configure multiple Atlassian Jira accounts and route tool calls by account alias.

Project goals

Most Jira MCP setups are single-account, which gets painful if you regularly switch between:

  • work + personal Jira
  • multiple clients/tenants
  • separate Jira sites with different permissions

This project exists to provide a single MCP server that can hold multiple Jira accounts and route every tool call via an explicit account parameter (so your agent config stays stable while you tell it to use different accounts in prompts).

This project has features like:

  • optional encrypted or OS keychain token storage
  • works with common MCP clients (Cursor, Claude Code, Codex CLI)
  • automatic installation of MCP configs for supported agents

Quick start

First, set up your account(s):

npx -y mcp-multi-jira login Work
npx -y mcp-multi-jira login Personal

Then, install the MCP in your favorite coding agent:

npx -y mcp-multi-jira install

That's it! Restart your coding agent / IDE to pick up the new MCP server.

CLI reference

Log in an account:

mcp-multi-jira login WorkJira

List accounts:

mcp-multi-jira list

Start the server: (Note: server will be started automatically by the agents if you use the install command)

mcp-multi-jira serve

Install MCP configuration for supported agents:

mcp-multi-jira install

Advanced usage

Change token storage

By default, tokens are stored in a plaintext file. To use encryption or the OS keychain, set the default backend once with:

# Options: plain (default), encrypted, keychain
mcp-multi-jira token-store encrypted

If you use encrypted storage, make sure your environment has the master password set, otherwise the MCP will fail to start:

export MCP_JIRA_TOKEN_PASSWORD="your-master-password"

Plaintext tokens are stored at ~/.mcp-jira/tokens.json (do not use on shared machines).

When switching token stores and accounts already exist, the CLI will prompt to migrate tokens to the new backend.

Override OAuth client

export MCP_JIRA_CLIENT_ID="your-client-id"
export MCP_JIRA_CLIENT_SECRET="your-client-secret"

Manual agent configuration

You can auto-install agent configs:

mcp-multi-jira install

Below are manual snippets for advanced setups.

Cursor

~/.cursor/mcp.json (or per-project .cursor/mcp.json):

{
  "mcpServers": {
    "mcp-jira": {
      "command": "npx",
      "args": ["-y", "mcp-multi-jira", "serve"]
    }
  }
}

Claude Code

~/.claude/mcp_servers.json:

{
  "mcpServers": {
    "mcp-jira": {
      "command": "npx",
      "args": ["-y", "mcp-multi-jira", "serve"]
    }
  }
}

OpenAI Codex CLI

~/.codex/config.toml:

[mcp_servers.mcp_jira]
command = "npx"
args = ["-y", "mcp-multi-jira", "serve"]

from github.com/iipanda/mcp-multi-jira

Install Multi-Jira in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install multi-jira

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add multi-jira -- npx -y mcp-multi-jira

Step-by-step: how to install Multi-Jira

FAQ

Is Multi-Jira MCP free?

Yes, Multi-Jira MCP is free — one-click install via Unyly at no cost.

Does Multi-Jira need an API key?

No, Multi-Jira runs without API keys or environment variables.

Is Multi-Jira hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Multi-Jira in Claude Desktop, Claude Code or Cursor?

Open Multi-Jira on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Multi-Jira with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All productivity MCPs