npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-multi-jira

v0.1.2

Published

Multi-account Jira MCP server

Readme

mcp-multi-jira

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"]