Jira MCP Server

Jira MCP Server

Local serverstdio

What is the Jira MCP server?

Connect Jira to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Jira MCP Server. The jira mcp server is what makes that connection.

What the server does

A collection of tools designed for interacting with Jira via the Model Context Protocol (MCP), providing core Jira functionalities and a unified, guided Issue Creation and Update Wizard.

Installation

@modelcontextprotocol/inspector on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • getJiraIssue — Fetches a Jira issue by its key
  • analyzeJiraIssue — Performs comprehensive analysis of a Jira issue
  • jiraGet — Fetches data from any Jira API GET endpoint
  • getIssuesByJql — Searches for Jira issues using a JQL query
  • issueCreation_getState — Gets the current internal state of the wizard
  • issueCreation_getStatus — Gets the high-level status of the wizard
  • issueCreation_initiateState — Initializes a new wizard state
  • issueCreation_resetState — Resets the wizard state
  • issueCreation_updateState — Updates the wizard state (project, issue type, fields, step)
  • issueCreation_createIssue — Creates a Jira issue using the wizard's state
  • issueCreation_getProjects — Retrieves available Jira projects
  • issueCreation_getIssueTypes — Gets available issue types for the selected project

Credentials and setup notes

Configuration is passed through the environment: DEBUG, LOG_FILE_PATH, JIRA_BASE_URL, 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.

Worth knowing first

  • 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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Jira.
  • 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.

Where it fits

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. Jira's toolset — getJiraIssue, analyzeJiraIssue, jiraGet and 11 more — is a fair guide to whether it matches your workflow. It is maintained by timbreeding; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
getJiraIssueFetches a Jira issue by its key.
analyzeJiraIssuePerforms comprehensive analysis of a Jira issue.
jiraGetFetches data from any Jira API GET endpoint.
getIssuesByJqlSearches for Jira issues using a JQL query.
issueCreation_getStateGets the current internal state of the wizard.
issueCreation_getStatusGets the high-level status of the wizard.
issueCreation_initiateStateInitializes a new wizard state.
issueCreation_resetStateResets the wizard state.
issueCreation_updateStateUpdates the wizard state (project, issue type, fields, step).
issueCreation_createIssueCreates a Jira issue using the wizard's state.
issueCreation_getProjectsRetrieves available Jira projects.
issueCreation_getIssueTypesGets available issue types for the selected project.
issueCreation_getFieldsRetrieves fields required for the selected project/issue type.
issueCreation_updateFieldsUpdates specific field values in the wizard state.

How to install the Jira MCP server

{
  "mcpServers": {
    "jira-1": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"],
      "env": {
        "DEBUG": "your-value",
        "LOG_FILE_PATH": "your-value",
        "JIRA_BASE_URL": "your-value",
        "JIRA_API_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
DEBUGConfiguration value read at startup.Optional
LOG_FILE_PATHFilesystem location the server is allowed to use.Optional
JIRA_BASE_URLEndpoint or connection string the server talks to.Yes
JIRA_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Jira to getJiraIssue.
  • Use Jira to analyzeJiraIssue.
  • Use Jira to jiraGet.

Frequently asked questions

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