Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Jira Context Mcp

    MCP server to provide Jira Tickets information to AI coding agents like Cursor

    23 stars
    TypeScript
    Updated Oct 27, 2025

    Table of Contents

    • Setup
    • Prerequisites
    • Installation
    • Installing via Smithery
    • Installing manually
    • Build
    • Usage
    • Starting the Server
    • Connecting with Cursor
    • Available Tools
    • 1. Get Jira Issue Details
    • 2. Get Assigned Issues
    • 3. Get Issues by Type
    • 4. Get Projects
    • 5. Get Issue Types
    • 6. Get Recent Ticket Changes
    • Command Examples
    • Example Workflows
    • Fix a Specific Bug
    • Work on Your Assigned Issues
    • Fix All Bugs in a Project
    • Review Recent Changes
    • Development
    • Project Structure
    • Adding New Tools
    • License
    • Author

    Table of Contents

    • Setup
    • Prerequisites
    • Installation
    • Installing via Smithery
    • Installing manually
    • Build
    • Usage
    • Starting the Server
    • Connecting with Cursor
    • Available Tools
    • 1. Get Jira Issue Details
    • 2. Get Assigned Issues
    • 3. Get Issues by Type
    • 4. Get Projects
    • 5. Get Issue Types
    • 6. Get Recent Ticket Changes
    • Command Examples
    • Example Workflows
    • Fix a Specific Bug
    • Work on Your Assigned Issues
    • Fix All Bugs in a Project
    • Review Recent Changes
    • Development
    • Project Structure
    • Adding New Tools
    • License
    • Author

    Documentation

    MseeP.ai Security Assessment Badge

    Jira Context MCP

    CodeQL Advanced

    smithery badge

    Verified on MseeP

    A Model Context Protocol (MCP) implementation for Jira that allows you to:

    • Input a Jira ticket link to fetch issue details and instruct Cursor to fix it
    • Retrieve all tickets assigned to you within a specified Jira project
    • Filter Jira issues based on a specific issue type and automatically direct Cursor to resolve them
    • Integrate seamlessly with Jira's API for automation and efficiency

    Setup

    Prerequisites

    • Node.js 20.17.0 or higher
    • A Jira account with API access
    • A Jira API token (can be generated at Atlassian API Tokens)

    Installation

    Installing via Smithery

    To install Jira Context MCP for Claude Desktop automatically via Smithery:

    bash
    npx -y @smithery/cli install @rahulthedevil/Jira-Context-MCP --client claude

    Installing manually

    1. Clone this repository:

    bash
    git clone https://github.com/yourusername/Jira-Context-MCP.git
       cd Jira-Context-MCP

    2. Install dependencies:

    bash
    npm install
       # or if you use pnpm
       pnpm install

    3. Create a .env file based on the example:

    bash
    cp .env.example .env

    4. Edit the .env file with your Jira details:

    code
    JIRA_BASE_URL=https://your-domain.atlassian.net
       JIRA_USERNAME=your-email@example.com
       JIRA_API_TOKEN=your-api-token-here
       HTTP_PORT=3000

    Build

    Build the project with:

    bash
    npm run build
    # or
    pnpm build

    Usage

    Starting the Server

    Start the HTTP server:

    bash
    npm start
    # or
    pnpm start

    Or use the CLI mode:

    bash
    npm run start:cli
    # or
    pnpm start:cli

    Connecting with Cursor

    1. In Cursor, open the Command Palette (Ctrl+Shift+P or Cmd+Shift+P)

    2. Type "Connect to MCP Server"

    3. Select "Connect to MCP Server"

    4. Enter the server URL (default: http://localhost:3000/sse)

    Available Tools

    Once connected, you can use the following tools in Cursor:

    1. Get Jira Issue Details

    Fetch detailed information about a specific Jira issue:

    code
    /get_issue issueKey:PROJECT-123

    2. Get Assigned Issues

    Retrieve issues assigned to you in a specific project:

    code
    /get_assigned_issues projectKey:PROJECT maxResults:10

    3. Get Issues by Type

    Filter issues by type (Bug, Story, Epic, etc.):

    code
    /get_issues_by_type issueType:Bug projectKey:PROJECT maxResults:10

    4. Get Projects

    List all available projects:

    code
    /get_projects

    5. Get Issue Types

    List all available issue types:

    code
    /get_issue_types

    6. Get Recent Ticket Changes

    Retrieve changes made in tickets over a specified period (e.g., the last 7 days) in a project:

    code
    /get_recent_changes projectKey:PROJECT maxDays:7

    Command Examples

    🚀 Jira MCP Server + Cursor IDE = Your AI-powered Jira assistant! Here’s how it makes devs work smarter:

    📂 "List all Jira projects I have access to"

    → AI fetches all available projects instantly

    No more searching manually!

    📋 "List all issues in PROJECT"

    → AI retrieves all open tickets

    Stay organized without effort!

    🐛 "Filter only Bugs or Change Requests and fix them"

    → AI identifies & directs Cursor to resolve them

    Fix issues faster with automation!

    ✅ "Find all tickets assigned to me and fix them"

    → AI pulls your tasks & lets Cursor handle them

    Stay on top of your work with zero hassle!

    🔍 "Get details for Jira issue PROJECT-123"

    → AI fetches full issue info in seconds

    No more switching tabs!

    📊 "What changed in tickets in the last 7 days in PROJECT?"

    → AI tracks recent updates & highlights key changes

    No more manually checking ticket histories!

    🔥 TL;DR: Your AI now speaks Jira + Cursor! Fetch projects, filter issues, track changes & fix bugs—all inside your IDE.

    From backlog to bug fixes, MCP Server makes Jira work for you!

    Example Workflows

    Fix a Specific Bug

    1. Connect to the Jira MCP server in Cursor.

    2. Get the issue details:

    code
    /get_issue issueKey:PROJECT-123

    3. Review the issue details and instruct Cursor to fix it:

    code
    Fix the bug described in PROJECT-123

    Work on Your Assigned Issues

    1. Connect to the Jira MCP server in Cursor.

    2. Retrieve your assigned issues:

    code
    /get_assigned_issues projectKey:PROJECT

    3. Ask Cursor to help with one of the issues:

    code
    Help me solve the first issue in my assigned list

    Fix All Bugs in a Project

    1. Connect to the Jira MCP server in Cursor.

    2. Retrieve all bug issues:

    code
    /get_issues_by_type issueType:Bug projectKey:PROJECT

    3. Instruct Cursor:

    code
    Help me fix these bugs one by one

    Review Recent Changes

    1. Connect to the Jira MCP server in Cursor.

    2. Retrieve recent ticket updates:

    code
    /get_recent_changes projectKey:PROJECT maxDays:7

    3. Review the changes to stay updated on modifications.

    Development

    Project Structure

    • src/ - Source code
    • services/ - Jira API service
    • types/ - TypeScript type definitions
    • utils/ - Utility functions
    • server.ts - MCP server implementation
    • index.ts - Application entry point
    • cli.ts - CLI entry point

    Adding New Tools

    To add new tools, edit the src/server.ts file and add new tool definitions in the registerTools method.

    License

    MIT

    Author

    Rahul Dey - @rahulthedevil

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • AS

      Ashra Mcp

      TypeScript·
      42
    • MC

      Mcp Browser Kit

      TypeScript·
      36

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • ME

      Metmuseum Mcp

      TypeScript·
      14
    • AS

      Ashra Mcp

      TypeScript·
      42
    • MC

      Mcp Browser Kit

      TypeScript·
      36

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k