Atlassian Jira MCP Server

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and

Local serverstdioGo

What is the Atlassian Jira MCP server?

Node.js/TypeScript MCP server for Atlassian Jira. Equips AI systems (LLMs) with tools to list/get projects, search/get issues (using JQL/ID), and view dev info (commits, PRs). Connects AI capabilities directly into Jira project management. Exposed over MCP by the atlassian jira mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Transform how you manage and track your work by connecting Claude, Cursor AI, and other AI assistants directly to your Jira projects, issues, and workflows. Get instant project insights, streamline issue management, and enhance your team collaboration.

Its toolset

Everything the assistant can do here goes through one of these:

  • jira_get — GET any Jira API endpoint (read data)
  • jira_post — POST to any endpoint (create resources)
  • jira_put — PUT to any endpoint (replace resources)
  • jira_patch — PATCH any endpoint (partial updates)
  • jira_delete — DELETE any endpoint (remove resources)
  • Requirements — The Requirements tool exposed by this server
  • Architecture — This server follows the 5-layer MCP architecture: 1. CLI Layer - Human interface using Commander.js 2. Tools Layer - AI interface with Zod
  • Debugging — Enable debug logging by setting the DEBUG environment variable:

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @aashari/mcp-server-atlassian-jira on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need 4 environment variables: ATLASSIAN_SITE_NAME, ATLASSIAN_USER_EMAIL, ATLASSIAN_API_TOKEN, DEBUG. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js: 18.0.0 or higher - MCP SDK: v1.23.0 (uses modern registration APIs) - Jira: Cloud only (Server/Data Center not supported)

When to reach for it

Among the planning and project tracking options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Atlassian Jira's toolset — jira_get, jira_post, jira_put and 5 more — is a fair guide to whether it matches your workflow. It is maintained by aashari; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Atlassian Jira's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the atlassian jira mcp server does with a few real requests.

Available tools

ToolWhat it does
jira_getGET any Jira API endpoint (read data)
jira_postPOST to any endpoint (create resources)
jira_putPUT to any endpoint (replace resources)
jira_patchPATCH any endpoint (partial updates)
jira_deleteDELETE any endpoint (remove resources)
RequirementsThe Requirements tool exposed by this server.
ArchitectureThis server follows the 5-layer MCP architecture: 1. **CLI Layer** - Human interface using Commander.js 2. **Tools Layer** - AI interface with Zod validation 3. **Controllers Layer** - Business logic and orchestration 4.
DebuggingEnable debug logging by setting the DEBUG environment variable:

How to install the Atlassian Jira MCP server

{
  "mcpServers": {
    "server-atlassian-jira": {
      "command": "npx",
      "args": ["-y", "@aashari/mcp-server-atlassian-jira"],
      "env": {
        "ATLASSIAN_SITE_NAME": "your-value",
        "ATLASSIAN_USER_EMAIL": "your-value",
        "ATLASSIAN_API_TOKEN": "your-value",
        "DEBUG": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js: 18.0.0 or higher - MCP SDK: v1.23.0 (uses modern registration APIs) - Jira: Cloud only (Server/Data Center not supported)
VariableDescriptionRequired
ATLASSIAN_SITE_NAMEConfiguration value read at startup.Optional
ATLASSIAN_USER_EMAILConfiguration value read at startup.Optional
ATLASSIAN_API_TOKENCredential the server authenticates with.Yes
DEBUGConfiguration value read at startup.Optional

Example prompts to try

  • Use Atlassian Jira to jira get.
  • Use Atlassian Jira to jira post.
  • Use Atlassian Jira to jira put.

Frequently asked questions

It connects Atlassian Jira to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (jira_get, jira_post, jira_put, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Atlassian Jira directly.