MCP Catalogs
Home

jiraxmcp

by vaibhavpandeyvpz·1·Score 37

Jira MCP server providing issue management, agile tools, and webhook notifications through the Model Context Protocol.

developer-toolsproductivitycommunication
0
Forks
0
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Integrating Jira with AI assistants for automated issue tracking and management
you:Connecting Jira workflows to AI-powered development environments
you:Enabling real-time notifications of Jira events in AI chat interfaces
you:What authentication methods does jiraxmcp support?
you:How can I enable webhook notifications?

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 README
  • jira_get_issue

    Retrieve a specific Jira issue by its key

  • jira_create_issue

    Create a new Jira issue

  • jira_update_issue

    Update an existing Jira issue

  • jira_search_issues

    Search for Jira issues using JQL

  • jira_get_agile_boards

    Retrieve all available agile boards

  • jira_get_board_issues

    Get all issues in a specific agile board

  • jira_add_comment

    Add a comment to a Jira issue

  • jira_get_all_projects

    Retrieve all available Jira projects

  • jira_transition_issue

    Transition a Jira issue to another status

  • jira_create_issue_link

    Create a link between two Jira issues

  • jira_download_attachments

    Download attachments from a Jira issue

  • jira_get_issue_images

    Extract images from Jira issue content

Comparable tools

jira-cliatlassian-mcpjira-rest-api

Installation

Installation

Quick Start

  1. 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"
  1. Start the MCP server:
npx jiraxmcp mcp
  1. If you want inbound Jira webhook events, enable channels:
npx jiraxmcp mcp --channels

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.