Skip to main content

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_KEY=""

# `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.
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