MCP server for Jira Cloud — manage issues, sprints, boards, filters, and custom fields
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"jira-cloud": {
"env": {
"JIRA_HOST": "https://your-team.atlassian.net",
"JIRA_EMAIL": "your-email",
"JIRA_API_TOKEN": "your-api-token"
},
"args": [
"-y",
"@aaronsb/jira-cloud-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server for interacting with Jira Cloud instances.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@aaronsb/jira-cloud-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @aaronsb/jira-cloud-mcp against OSV.dev.
Click any tool to inspect its schema.
instance_summaryInstance-level statistics
jira://instance/summary
projects_distributionProject distribution overview
jira://projects/distribution
project_overviewProject overview with status counts
jira://projects/{key}/overview
board_overviewBoard overview with sprint info
jira://boards/{id}/overview
issue_link_typesAvailable issue link types
jira://issue-link-types
custom_fieldsCustom field catalog (auto-discovered at startup)
jira://custom-fields
custom_fields_contextContext-specific custom fields
jira://custom-fields/{project}/{issueType}
analysis_recipesAnalysis query patterns and compute DSL reference
jira://analysis/recipes
tool_documentationPer-tool documentation
jira://tools/{name}/documentation
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / developer-tools
Persistent memory using a knowledge graph
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for Jira Cloud MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol server for interacting with Jira Cloud instances.
Download jira-cloud-mcp.mcpb and open it — Claude Desktop will prompt for your Jira credentials.
claude mcp add jira-cloud -e JIRA_API_TOKEN=your-token -e JIRA_EMAIL=your-email -e JIRA_HOST=https://your-team.atlassian.net -- npx -y @aaronsb/jira-cloud-mcp
{
"mcpServers": {
"jira-cloud": {
"command": "npx",
"args": ["-y", "@aaronsb/jira-cloud-mcp"],
"env": {
"JIRA_API_TOKEN": "your-api-token",
"JIRA_EMAIL": "your-email",
"JIRA_HOST": "https://your-team.atlassian.net"
}
}
}
}
Generate an API token at Atlassian Account Settings.
| Tool | Description |
|---|---|
manage_jira_issue | Get, create, update, delete, move, transition, comment on, link, or traverse hierarchy of issues |
manage_jira_filter | Search for issues using JQL queries, or manage saved filters |
manage_jira_project | List projects or get project configuration and metadata |
manage_jira_board | List boards or get board details and configuration |
manage_jira_sprint | Manage sprints: create, start, close, and assign issues to sprints |
queue_jira_operations | Batch multiple operations with result references ($0.key) and error strategies |
analyze_jira_issues | Compute metrics, exact counts, and data cube analysis over issues selected by JQL |
Each tool accepts an operation parameter (except queue_jira_operations which takes an operations array, and analyze_jira_issues which takes jql + metrics). Per-tool documentation is available as MCP resources at jira://tools/{tool_name}/documentation.
See docs/tools.md for detailed tool descriptions, workspace patterns, and design principles.
| Resource | Description |
|---|---|
jira://instance/summary | Instance-level statistics |
jira://projects/distribution | Project distribution overview |
jira://projects/{key}/overview | Project overview with status counts |
jira://boards/{id}/overview | Board overview with sprint info |
jira://issue-link-types | Available issue link types |
jira://custom-fields | Custom field catalog (auto-discovered at startup) |
jira://custom-fields/{project}/{issueType} | Context-specific custom fields |
jira://analysis/recipes | Analysis query patterns and compute DSL reference |
jira://tools/{name}/documentation | Per-tool documentation |