Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables interaction with JIRA through the MCP interface, allowing users to manage issues, sprints, and users via natural language commands.

README.md

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, search issues, manage users, and get detailed ticket information through the MCP interface.

⚠️ Updated for 2025: This fork includes critical fixes for Atlassian's API deprecations that caused 410 errors in the original version. All deprecated endpoints have been replaced with their modern equivalents.

Features

The server provides the following tools:

Issue Management

  1. search-issues: Search for issues using JQL or filters
  • Optional parameter: jql (string) - Custom JQL query
  • Optional parameter: projectKey (string) - Filter by project
  • Optional parameter: issueType (string) - Filter by issue type (e.g., 'Bug', 'Task', 'Story')
  • Optional parameter: statusCategory (string) - Filter by status ('To Do', 'In Progress', 'Done')
  • Optional parameter: maxResults (number) - Max results to return (default: 20, max: 100)
  • Optional parameter: startAt (number) - Pagination offset
  1. list-sprint-tickets: Gets all tickets in the active sprint for a given project
  • Required parameter: projectKey (string)
  1. get-ticket-details: Gets detailed information about a specific ticket
  • Required parameter: issueKey (string)
  1. add-comment: Adds a comment to a specific ticket
  • Required parameter: issueKey (string)
  • Required parameter: comment (string)
  1. update-description: Updates the description of a specific ticket
  • Required parameter: issueKey (string)
  • Required parameter: description (string)
  1. list-child-issues: Gets all child issues of a parent ticket
  • Required parameter: parentKey (string)
  1. 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')
  1. create-ticket: Create a new ticket with custom fields
  • Required parameter: projectKey (string)
  • Required parameter: summary (string)
  • Optional parameter: description (string)
  • Optional parameter: issueType (string)
  • Optional parameter: parentKey (string) - Creates a sub-task if provided
  • Optional parameter: fields (object) - Additional custom fields
  1. update-issues: Batch update fields on multiple tickets
  • Required parameter: issueKeys (array of strings)
  • Required parameter: fields (object) - Fields to update
  1. add-labels: Add labels to multiple issues
  • Required parameter: issueKeys (array of strings)
  • Required parameter: labels (array of strings)
  1. link-issues: Link multiple tickets using 'relates to' relationship
  • Required parameter: inwardIssueKeys (array of strings)
  • Required parameter: outwardIssueKeys (array of strings)
  1. transition-issues: Transition multiple issues to a new status
  • Required parameter: issueKeys (array of strings)
  • Required parameter: transitionId (string)
  1. list-issue-transitions: List available transitions for an issue
  • Required parameter: issueKey (string)
  1. assign-issue: Assign issues to a user
  • Required parameter: issueKeys (array of strings)
  • Required parameter: assigneeDisplayName (string)

User & Field Management

  1. list-users: List all users in Jira
  • Optional parameter: query (string) - Search string to filter users
  • Optional parameter: maxResults (number) - Max results (default: 50, max: 1000)
  1. list-issue-fields: List all available issue fields including custom fields
  • Optional parameter: includeCustomOnly (boolean) - Only show custom fields
  1. list-jira-filters: List all Jira filters

Setup

  1. Install dependencies:
   npm install
  1. 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

Option 1: Local Development with .env file

For local development and testing, you can use a .env file:

  1. Copy the example file:
   cp .env.example .env
  1. Edit .env and add your credentials:
   JIRA_HOST=https://your-domain.atlassian.net
   JIRA_EMAIL=your-email@example.com
   JIRA_API_TOKEN=your-api-token
  1. Run the server:
   npm start

Option 2: MCP 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

Recommended scripts:

  • Build once: npm run build
  • Build and watch: npm run build:watch
  • Type-check only: npm run typecheck
  • Dev run with watch: npm run start:dev
  • Run compiled server: npm start
  • Format check: npm run fmt:check
  • Format write: npm run fmt

Typical workflow:

  1. Make changes to jira.ts
  2. Run npm run start:dev during development, or npm run build then npm start for compiled run
  3. Restart your MCP client if needed to pick up changes

Recent Updates (2025)

Critical Fixes for Atlassian API Deprecations

This fork includes fixes for the following deprecated endpoints that were causing 410 Gone errors:

  1. /rest/api/3/users/search → Migrated to /rest/api/3/user/search
  • Affects: list-users tool
  • Fixed: Updated to use userSearch.findUsers() with proper pagination
  1. /rest/api/3/search → Migrated to /rest/api/3/search/jql
  • Affects: search-issues and list-sprint-tickets tools
  • Fixed: Updated to use searchForIssuesUsingJqlEnhancedSearch() with token-based pagination
  • Note: The new API requires bounded JQL queries (unbounded queries now default to last 30 days)

Other Improvements

  • Updated jira.js dependency from 4.1.3 to 5.2.2
  • Added .env file support for local development with dotenv
  • Enhanced error messages with full response details for easier debugging
  • Added test script (test-local.sh) for local development
  • Improved pagination handling with new token-based system

Error Handling

The server includes error handling for:

  • Invalid JIRA credentials
  • Missing active sprints
  • Invalid project keys or issue keys
  • Network errors
  • Deprecated API endpoints (with automatic migration to new endpoints)

Error messages will be returned in the tool response with detailed information.

Migration from Original Version

If you're migrating from the original boukeversteegh/mcp-server-jira:

  1. Update your local repository:
   git pull
   npm install
   npm run build
  1. Restart your MCP client (Cursor/Claude)
  1. All tools should now work without 410 errors

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

Apache-2.0 License

Credits

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.