jiraxmcp
by vaibhavpandeyvpz·★ 1·Score 37
Jira MCP server providing issue management, agile tools, and webhook notifications through the Model Context Protocol.
Overview
jiraxmcp is a comprehensive MCP server that bridges Jira Cloud with MCP-compatible clients. It offers extensive functionality for Jira interaction including issue CRUD operations, search capabilities, agile board management, sprint handling, comment management, and attachment processing. The server supports both API token and access token authentication methods and includes an innovative feature for handling Jira webhook events through MCP notifications channels.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose jiraxmcp when you need MCP-compatible AI access to Jira Cloud, especially if you want to create issues, manage agile workflows, or receive webhook notifications through MCP.
When NOT to choose this
Don't choose this if you need Jira server (non-Cloud) integration, as it's specifically designed for Jira Cloud instances only.
Tools this server exposes
12 tools extracted from the READMEjira_get_issueRetrieve a specific Jira issue by its key
jira_create_issueCreate a new Jira issue
jira_update_issueUpdate an existing Jira issue
jira_search_issuesSearch for Jira issues using JQL
jira_get_agile_boardsRetrieve all available agile boards
jira_get_board_issuesGet all issues in a specific agile board
jira_add_commentAdd a comment to a Jira issue
jira_get_all_projectsRetrieve all available Jira projects
jira_transition_issueTransition a Jira issue to another status
jira_create_issue_linkCreate a link between two Jira issues
jira_download_attachmentsDownload attachments from a Jira issue
jira_get_issue_imagesExtract images from Jira issue content
Comparable tools
Installation
Installation
Quick Start
- Export your Jira credentials:
export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_EMAIL="you@example.com"
export JIRA_API_TOKEN="your-api-token"Or with an access token:
export JIRA_HOST="https://your-domain.atlassian.net"
export JIRA_ACCESS_TOKEN="your-access-token"- Start the MCP server:
npx jiraxmcp mcp- If you want inbound Jira webhook events, enable channels:
npx jiraxmcp mcp --channelsClaude Desktop Configuration
Add to your Claude Desktop config.json:
"mcpServers": {
"jira": {
"command": "npx",
"args": ["jiraxmcp", "mcp"]
}
}For webhook support, also set environment variables in Claude Desktop config.
FAQ
- What authentication methods does jiraxmcp support?
- jiraxmcp supports both JIRA_EMAIL plus JIRA_API_TOKEN and JIRA_ACCESS_TOKEN authentication methods.
- How can I enable webhook notifications?
- Start the server with the --channels flag to enable webhook notifications. Configure Jira webhooks to point to your listener (default: http://127.0.0.1:6543/webhook).
Compare jiraxmcp with
Last updated · Auto-generated from public README + GitHub signals.