Skip to main content
Get the best Jira MCP server up and running in just a few minutes. Jira MCP provides seamless AI-powered Jira integration for Cursor, Claude, Windsurf, and other LLM clients.

Prerequisites

Before installing Jira MCP, you need to set up the Jira CLI that the MCP server uses to execute commands.
1

Install jira-cli

Follow the installation instructions for your operating system from the jira-cli repository.
2

Get Jira API credentials

Depending on your Jira implementation (Cloud or Self-Hosted), you will need to use a different authentication type.Add these to your .bashrc, .zshrc, or other shell configuration file:
# https://id.atlassian.com/manage-profile/security/api-tokens
export JIRA_API_TOKEN=""

# `bearer` for token,
# `basic` for Jira account API token
# `password` for Jira account password
export JIRA_AUTH_TYPE="basic"
Make sure to source the file after adding the credentials:
source ~/.bashrc
See alternative credential methods for other ways to configure authentication.
GUI applications like Cursor and Windsurf do not inherit shell environment variables from .bashrc or .zshrc. It is recommended to pass these variables explicitly in the MCP configuration using the env field (shown in the examples below).
3

Initialize jira-cli

jira init
This will prompt you for your Jira URL and credentials.
4

Test jira-cli

jira issue list
This should return a list of issues in Jira.

Install the MCP server

Choose your preferred installation method:

Next steps