Skip to content

Getting Started

One command to install and configure:

Terminal window
claude mcp add jira -- env \
JIRA_URL=https://your-domain.atlassian.net \
JIRA_EMAIL=your@email.com \
JIRA_API_KEY=your-api-key \
npx -y @bodywave/jira-mcp

Add to your ~/.claude.json or project .mcp.json:

{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@bodywave/jira-mcp"],
"env": {
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "your@email.com",
"JIRA_API_KEY": "your-api-key"
}
}
}
}
Terminal window
npm install -g @bodywave/jira-mcp

Then configure with:

{
"mcpServers": {
"jira": {
"command": "bodywave-jira-mcp",
"env": {
"JIRA_URL": "https://your-domain.atlassian.net",
"JIRA_EMAIL": "your@email.com",
"JIRA_API_KEY": "your-api-key"
}
}
}
}
VariableRequiredDescription
JIRA_URLYesYour Jira Cloud instance URL (e.g., https://mycompany.atlassian.net)
JIRA_EMAILYesYour Atlassian account email
JIRA_API_KEYYesAPI token from Atlassian
JIRA_LOG_LEVELNoLogging level: DEBUG, INFO, WARN, ERROR, SILENT (default: INFO)
  1. Go to Atlassian API Tokens
  2. Click Create API token
  3. Give it a label (e.g., “JiraMCP”)
  4. Copy the token immediately (it won’t be shown again)

After installation, test the connection by asking your AI agent:

"Test my Jira connection"

The agent will call jira_test_account and report the connection status and authenticated user.

You can configure multiple Jira instances. See the Multi-Account Management guide for details.