MCP Server

MCP server for Jira Cloud — issues, search, comments, attachments, transitions.

Local serverstdioGo

What is the MCP MCP server?

MCP server for Jira Cloud — issues, search, comments, attachments, transitions. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

A Model Context Protocol (MCP) server for Jira API integration. Enables reading, writing, and managing Jira issues and projects directly from your MCP client (e.g., Claude Desktop).

The tools it exposes

The server publishes 4 tools. What each one is for:

  • Projects — The Projects tool exposed by this server
  • Issues — The Issues tool exposed by this server
  • Comments — The Comments tool exposed by this server
  • Testing — The Testing tool exposed by this server

What it needs from you

Configuration is passed through the environment: JIRA_BASE_URL, JIRA_EMAIL, JIRA_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on npm as mcp-jira-stdio, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

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. MCP's toolset — Projects, Issues, Comments and 1 more — is a fair guide to whether it matches your workflow. It is maintained by freema; worth a glance at recent repository activity before you build anything load-bearing on it.

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

Things to watch

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
ProjectsThe Projects tool exposed by this server.
IssuesThe Issues tool exposed by this server.
CommentsThe Comments tool exposed by this server.
TestingThe Testing tool exposed by this server.

How to install the MCP MCP server

#### Alternative: Using npx

```json
{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["mcp-jira-stdio"],
      "env": {
        "JIRA_BASE_URL": "https://your-instance.atlassian.net",
        "JIRA_EMAIL": "your-email@example.com",
        "JIRA_API_TOKEN": "your-api-token"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
JIRA_BASE_URLEndpoint or connection string the server talks to.Yes
JIRA_EMAILConfiguration value read at startup.Optional
JIRA_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to Projects.
  • Use MCP to Issues.
  • Use MCP to Comments.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Projects, Issues, Comments, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.