Aerostack
electrical_services

Jira MCP Server — Hosted Team Tools Integration

MCP Server language Hosted language Public

Create, search, update issues, manage sprints, boards, and projects in Jira — AI-native agile project management.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "jira": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-jira",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

+4 more

Natural Language Prompt

“Use the _ping tool to verify jira credentials by fetching the current user. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

The Jira MCP server lets AI agents create, search, update, and transition Jira issues directly. Hosted on Aerostack as a single authenticated URL usable from Claude, Cursor, or any MCP agent, it turns natural-language requests into tracked work — filing bugs, moving tickets through workflows, and querying your backlog without leaving the chat.

description Overview

mcp-jira — Jira MCP Server

Create, search, update issues, manage sprints, boards, and projects in Jira.

Jira is the industry-standard issue tracker and agile project management tool for software teams. This MCP server gives your AI agents the ability to search issues with JQL, create and update tickets, manage sprint workflows, transition issue statuses, and add comments — turning Jira into an AI-native agile command center.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-jira


What You Can Do

  • Search issues with full JQL support — find bugs assigned to you, overdue tasks, sprint backlogs, or any custom query
  • Create and update issues programmatically — file bugs from error alerts, create tasks from Slack messages, bulk-update labels
  • Transition issues through your workflow — move tickets from To Do to In Progress to Done without leaving your AI chat
  • Comment on issues to leave notes, status updates, or automated reports directly on the relevant ticket
  • List projects and browse sprints to get a bird's-eye view of your team's work

Setup

Step 1: Generate a Jira API Token
  1. Go to id.atlassian.com/manage-profile/security/api-tokens
  2. Click Create API token → give it a label (e.g., "Aerostack") → Create
  3. Copy the token immediately (you cannot view it again)
Step 2: Find Your Jira URL

Your Jira Cloud URL looks like https://yourteam.atlassian.net. You can find it in your browser address bar when viewing any Jira page.

Step 3: Add to Aerostack Workspace
  1. Go to your Aerostack workspace → Add Server → search "Jira"
  2. Enter your three secrets when prompted:
    • JIRA_URL — your Jira Cloud URL (e.g. https://yourteam.atlassian.net)
    • JIRA_EMAIL — the email address of your Atlassian account
    • JIRA_API_TOKEN — the API token you created in Step 1
  3. Click Test to verify the connection

Available Tools

Tool Description
search_issues Search issues using JQL (Jira Query Language)
get_issue Get full issue details by key, including comments and changelog
create_issue Create a new issue with project, type, summary, description, assignee, priority, labels
update_issue Update fields on an existing issue
add_comment Add a comment to an issue
transition_issue Change issue status (e.g. To Do → In Progress → Done)
list_projects List all accessible Jira projects
get_board_sprints Get sprints for a board (active, closed, or future)
get_sprint_issues Get all issues in a specific sprint

Configuration

Variable Required Description
JIRA_URL Yes Jira Cloud URL (e.g. https://yourteam.atlassian.net)
JIRA_EMAIL Yes Atlassian account email address
JIRA_API_TOKEN Yes API token from id.atlassian.com

Troubleshooting

Error Cause Fix
401 Unauthorized Wrong email or API token Verify email matches your Atlassian account; regenerate the API token
404 Not Found Wrong JIRA_URL or issue key doesn't exist Check the URL includes https:// and the correct subdomain
Transition not found Target status not available from current state Use get_issue to see available_transitions for the current status
Field not found Custom field ID mismatch Jira custom field IDs vary per instance; check your Jira admin settings

Example Prompts

"Search Jira for all open bugs in the PLATFORM project assigned to me"
"Create a new Bug in project DEV: 'Login page returns 500 on Safari' with priority High"
"Move PROJ-456 to In Progress and add a comment saying I've started working on it"
"Show me the current sprint for board 42 with all issues and their story points"
"Find all issues updated in the last 24 hours in project CORE"

Direct API Call

curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-jira \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-JIRA-URL: https://yourteam.atlassian.net' \
  -H 'X-Mcp-Secret-JIRA-EMAIL: you@example.com' \
  -H 'X-Mcp-Secret-JIRA-API-TOKEN: your-api-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_issues","arguments":{"jql":"project = DEV AND status = Open ORDER BY created DESC"}}}'

License

MIT

terminal Tools (10)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Jira credentials by fetching the current user. Used internally by Aerostack to validate credentials.

terminal
search_issues #2

Search for Jira issues using JQL (Jira Query Language)

terminal
get_issue #3

Get a Jira issue by key, including comments and changelog

terminal
create_issue #4

Create a new Jira issue

terminal
update_issue #5

Update fields on an existing Jira issue

terminal
add_comment #6

Add a comment to a Jira issue

terminal
transition_issue #7

Transition a Jira issue to a different status (e.g. To Do → In Progress → Done)

terminal
list_projects #8

List all accessible Jira projects

terminal
get_board_sprints #9

Get sprints for a Jira board (requires Jira Software / Agile)

terminal
get_sprint_issues #10

Get all issues in a specific sprint

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category Team Tools
terminal Tools 10

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-jira

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in Team Tools

Browse Team Tools MCPs →

Frequently asked questions

What is the Jira MCP server and what can it do? +

The Jira MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `search_issues`, `get_issue`, `create_issue`, `update_issue`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Jira MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Jira MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Jira MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Jira MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-jira": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-jira"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Jira MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-jira", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-jira"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Jira MCP require authentication? +

Yes. Jira requires authentication. Check the MCP's documentation for the required credentials.