VOOZH about

URL: https://apify.com/scraper_guru/jira-mcp-server

โ‡ฑ Jira MCP Server ยท Apify


Pricing

from $80.00 / 1,000 search issues

Go to Apify Store

A Model Context Protocol (MCP) server that enables AI assistants to interact with Jira Cloud. Create, search, update issues, manage sprints, and more โ€” directly from Claude, Cursor, or any MCP client.

Pricing

from $80.00 / 1,000 search issues

Rating

0.0

(0)

Developer

๐Ÿ‘ LIAICHI MUSTAPHA

LIAICHI MUSTAPHA

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

1

Monthly active users

3 months ago

Last modified

Share

A Model Context Protocol (MCP) server that integrates with Jira Cloud for project management and issue tracking.

Connect your AI assistant (Claude, Cursor, VS Code, Windsurf) to Jira and manage projects, create issues, search with JQL, track sprints, and transition tickets โ€” all through natural language.

About this MCP Server: To understand how to connect to and use this MCP server, please refer to the official Model Context Protocol documentation at mcp.apify.com โ†—.


โœจ Features

  • ๐Ÿ” JQL-powered issue search โ€” search across all projects using Jira Query Language
  • ๐Ÿ“‹ Full issue management โ€” create, read, update issues (Task, Bug, Story, Epic)
  • ๐Ÿ’ฌ Comment threads โ€” add comments to issues from your AI assistant
  • ๐Ÿƒ Sprint tracking โ€” list boards, view active/future sprints, check sprint goals
  • ๐Ÿ”„ Status transitions โ€” move issues through your workflow (To Do โ†’ In Progress โ†’ Done)
  • ๐Ÿ“Š Project overview โ€” list all accessible projects with metadata
  • ๐Ÿ” Secure authentication โ€” uses Jira Cloud API tokens (never stored, provided per-user)

๐Ÿ”— Connection URL

https://mcp-servers--jira-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN

Replace YOUR_APIFY_TOKEN with your Apify API token.


๐Ÿ› ๏ธ Available Tools

ToolDescription
list_projectsList all Jira projects accessible to the authenticated user
search_issuesSearch issues using JQL โ€” supports all Jira query syntax
get_issueGet full details of an issue including description, comments, and status
create_issueCreate a new issue (Task, Bug, Story, Epic) with description, priority, and labels
update_issueUpdate issue fields โ€” summary, description, priority, labels, assignee
add_commentAdd a comment to any issue
list_sprintsList sprints for a board โ€” filter by active, future, or closed
transition_issueMove an issue through workflow statuses (e.g., To Do โ†’ In Progress โ†’ Done)

๐ŸŒณ Decision Tree โ€” Which tool should I use?

Need to find issues?
โ”œโ”€โ”€ General search โ†’ search_issues(JQL)
โ”‚ Examples:"status = 'In Progress'","assignee = currentUser()"
โ”œโ”€โ”€ Specific issue โ†’ get_issue(by key like PROJ-123)
โ””โ”€โ”€ List everything โ†’ list_projects + search_issues
Need to modify something?
โ”œโ”€โ”€ New ticket โ†’ create_issue
โ”œโ”€โ”€ Change fields โ†’ update_issue
โ”œโ”€โ”€ Move status โ†’ transition_issue
โ””โ”€โ”€ Add note โ†’ add_comment
Need sprint info?
โ””โ”€โ”€ list_sprints(with optional board ID)

๐Ÿš€ Installation

Prerequisites

Before connecting, you'll need:

  1. Jira Cloud account โ€” Sign up for free
  2. Jira API Token โ€” Generate one at Atlassian API Tokens
  3. Apify account โ€” Sign up (for hosted MCP)

๐Ÿ–ฑ๏ธ Running on Cursor

Requires Cursor version 0.45.6+

For the most up-to-date configuration instructions, see Cursor MCP Server Configuration Guide โ†—.

Cursor v0.48.6+:

{
"mcpServers":{
"jira-mcp-server":{
"url":"https://mcp-servers--jira-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

Cursor v0.45.6:

  1. Go to Settings โ†’ Features โ†’ MCP Servers
  2. Click Add New MCP Server
  3. Set the URL to the Connection URL above

๐Ÿ’ป Running on VS Code

Add to your .vscode/mcp.json:

{
"servers":{
"jira-mcp-server":{
"type":"http",
"url":"https://mcp-servers--jira-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐ŸŒŠ Running on Windsurf

Add to your ~/.codeium/windsurf/model_config.json:

{
"mcpServers":{
"jira-mcp-server":{
"serverUrl":"https://mcp-servers--jira-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿค– Running on Claude Desktop

Add to your Claude Desktop config:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
"mcpServers":{
"jira-mcp-server":{
"url":"https://mcp-servers--jira-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿ”‘ Setting Up Jira API Token

  1. Go to https://id.atlassian.com/manage-profile/security/api-tokens
  2. Click Create API token
  3. Give it a label (e.g., "MCP Server")
  4. Copy the token immediately โ€” you won't see it again
  5. Enter the token when starting the Actor on Apify Console

Note: This server works with Jira Cloud only. Jira Server and Data Center are not supported.


๐Ÿ’ก Example Prompts

Once connected to your AI assistant, try these:

PromptTool Used
"List all my Jira projects"list_projects
"Find all open bugs in project MYAPP"search_issues
"Show me the details of MYAPP-42"get_issue
"Create a new Task in MYAPP: Fix login page alignment"create_issue
"Move MYAPP-42 to In Progress"transition_issue
"What's in the current sprint?"list_sprints + search_issues
"Add a comment to MYAPP-42: Investigated โ€” this is a CSS issue"add_comment
"Change the priority of MYAPP-42 to High"update_issue

๐Ÿ’ฐ Pricing

This Actor uses the Pay per event pricing model. Each tool call is charged individually:

EventPrice per call
Actor start$0.10
list_projects$0.05
search_issues$0.08
get_issue$0.05
create_issue$0.10
update_issue$0.08
add_comment$0.05
list_sprints$0.05
transition_issue$0.08

Plus standard Apify platform usage costs.


๐Ÿ”ง Local Development

If you want to run this server locally:

# Clone and install
git clone <repo-url>
cd jira-mcp-server
npminstall
# Create local input
echo'{
"jiraDomain": "your-site.atlassian.net",
"jiraEmail": "your@email.com",
"jiraApiToken": "your-api-token"
}'> .actor/INPUT.json
# Copy input to Apify local storage
mkdir-p storage/key_value_stores/default
cp .actor/INPUT.json storage/key_value_stores/default/INPUT.json
# Build and run
npm run build
node dist/main.js

Access at http://localhost:8080/mcp


๐Ÿ›ก๏ธ Security

  • API tokens are never stored by the actor โ€” they are provided per-user via Actor input
  • Tokens are transmitted over HTTPS and used only for the duration of the Actor run
  • The Actor runs in an isolated container on Apify's platform
  • Your Jira data is never cached or shared

๐Ÿ“š References


Built with โค๏ธ by MuLIAICHI | Report an issue

You might also like

Jira MCP Server

constant_quadruped/jira-mcp-server

MCP server for Jira Cloud. AI agents can search with JQL, create and update issues, transition statuses, manage comments, track sprints, and list projects. 14 tools with Jira REST API v3.

Confluence MCP Server

scraper_guru/confluence-mcp-server

A Model Context Protocol (MCP) server that enables AI assistants to interact with Confluence Cloud. Search pages, read content, create and update documentation, manage spaces โ€” directly from Claude, Cursor, or any MCP client.

๐Ÿ‘ User avatar

LIAICHI MUSTAPHA

1

Asana MCP Server

scraper_guru/asana-mcp-server

A Model Context Protocol (MCP) server that enables AI assistants to interact with Asana. Create, search, update tasks, manage projects, and more, directly from Claude, Cursor, or any MCP client.

๐Ÿ‘ User avatar

LIAICHI MUSTAPHA

1

Time MCP Server

agentify/time-mcp-server

An MCP server implementing the Model Context Protocol (MCP) for time-related operations.

Openapi To Mcp Converter

theguide/openapi-to-mcp-converter

Convert any OpenAPI specification into a Model Context Protocol (MCP) server that AI assistants can use to interact with REST APIs.

Excel Mcp Server

lovely_radiologist/excel-mcp-server

Playwright MCP Server

jiri.spilka/playwright-mcp-server

A Model Context Protocol (MCP) server that provides browser automation capabilities using Playwright

๐Ÿ‘ User avatar

Jiล™รญ Spilka

313

Related articles

Best MCP servers for developers
Read more
Build and deploy MCP servers in minutes with a TypeScript template
Read more
How to use MCP with Apify Actors
Read more