Cover image
Try Now
2025-04-03

3 years

Works with Finder

1

Github Watches

0

Github Forks

0

Github Stars

JIRA MCP Server

This is a Model Context Protocol (MCP) server that provides tools for interacting with JIRA. It allows you to fetch tickets from active sprints and get detailed ticket information through the MCP interface.

Features

The server provides the following tools:

  1. list-sprint-tickets: Gets all tickets in the active sprint for a given project

    • Required parameter: projectKey (string)
  2. get-ticket-details: Gets detailed information about a specific ticket

    • Required parameter: issueKey (string)
  3. add-comment: Adds a comment to a specific ticket

    • Required parameter: issueKey (string)
    • Required parameter: comment (string)
  4. link-tickets: Links two tickets with a 'relates to' relationship

    • Required parameter: sourceIssueKey (string)
    • Required parameter: targetIssueKey (string)
  5. update-description: Updates the description of a specific ticket

    • Required parameter: issueKey (string)
    • Required parameter: description (string)
  6. list-child-issues: Gets all child issues of a parent ticket

    • Required parameter: parentKey (string)
  7. create-sub-ticket: Creates a sub-ticket (child issue) for a parent ticket

    • Required parameter: parentKey (string)
    • Required parameter: summary (string)
    • Optional parameter: description (string)
    • Optional parameter: issueType (string) - The name of the sub-task issue type (e.g., 'Sub-task')

Setup

  1. Install dependencies:

    npm install
    
  2. Build the TypeScript code:

This step is only needed for Cline on Windows, which currently has an issue executing npx

npm run build
  1. Configure the MCP settings in your Claude app settings file (usually located at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json on Windows):

Settings for Claude:

{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": ["path/to/this/repo/jira.ts"],
      "env": {
        "JIRA_HOST": "https://your-domain.atlassian.net",
        "JIRA_EMAIL": "your-email@example.com",
        "JIRA_API_TOKEN": "your-api-token"
      }
    }
  }
}

Settings for Cline:

{
  "mcpServers": {
    "jira": {
      "command": "node",
      "args": ["path/to/this/repo/dist/jira.js"],
      "env": {
        "JIRA_HOST": "https://your-domain.atlassian.net",
        "JIRA_EMAIL": "your-email@example.com",
        "JIRA_API_TOKEN": "your-api-token"
      }
    }
  }
}

Configuration

You'll need to set up the following environment variables in your MCP settings:

  1. JIRA_HOST: Your Atlassian domain URL (e.g., https://your-company.atlassian.net)
  2. JIRA_EMAIL: Your JIRA account email
  3. JIRA_API_TOKEN: Your JIRA API token

Usage

Once configured, you can use the tools through the MCP interface in Claude:

List Sprint Tickets

To get all tickets in the active sprint for a project:

<use_mcp_tool>
<server_name>jira</server_name>
<tool_name>list-sprint-tickets</tool_name>
<arguments>
{
  "projectKey": "YOUR_PROJECT_KEY"
}
</arguments>
</use_mcp_tool>

Get Ticket Details

To get detailed information about a specific ticket:

<use_mcp_tool>
<server_name>jira</server_name>
<tool_name>get-ticket-details</tool_name>
<arguments>
{
  "issueKey": "PROJECT-123"
}
</arguments>
</use_mcp_tool>

Development

The server is written in TypeScript and uses:

  • @modelcontextprotocol/sdk for MCP server implementation
  • jira.js for JIRA API integration

To modify the server:

  1. Make changes to jira.ts
  2. Run npm run build to compile to JavaScript
  3. Restart Claude to pick up the changes

Error Handling

The server includes error handling for:

  • Invalid JIRA credentials
  • Missing active sprints
  • Invalid project keys or issue keys
  • Network errors

Error messages will be returned in the tool response.

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • Lists Tailwind CSS classes in monospaced font

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • tomoyoshi hirata
  • Sony α7IIIマニュアルアシスタント

  • apappascs
  • Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.

  • ShrimpingIt
  • Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx

  • jae-jae
  • MCP server for fetch web page content using Playwright headless browser.

  • HiveNexus
  • An AI chat bot for small and medium-sized teams, supporting models such as Deepseek, Open AI, Claude, and Gemini. 专为中小团队设计的 AI 聊天应用,支持 Deepseek、Open AI、Claude、Gemini 等模型。

  • ravitemer
  • A powerful Neovim plugin for managing MCP (Model Context Protocol) servers

  • patruff
  • Bridge between Ollama and MCP servers, enabling local LLMs to use Model Context Protocol tools

    Reviews

    3 (1)
    Avatar
    user_0zFlomub
    2025-04-16

    I’ve been using mcp-server-jira by boukeversteegh, and it's been a game changer for managing our Jira projects. It's well-integrated and streamlined our workflow efficiently. The setup was straightforward, and the performance is consistent. Highly recommend for any Jira users! Check it out: https://github.com/boukeversteegh/mcp-server-jira