mcp-server-atlassian-jira
by aashari·★ 69·Score 46
TypeScript MCP server enabling AI systems to interact with Atlassian Jira via REST API for project management and issue tracking.
Overview
This MCP server provides a bridge between AI assistants and Jira, offering generic tools to perform any Jira REST API operation. It supports listing and retrieving projects, searching and getting issues using JQL or issue IDs, viewing development information like commits and PRs, and managing issue comments and updates. The server uses TOON format for responses to reduce token usage and supports JMESPath filtering for efficient data extraction.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this MCP server if your team uses Atlassian Jira and wants AI assistants to directly interact with project management and issue tracking workflows.
When NOT to choose this
Don't choose this if you use Jira Server/Data Center (on-premise) instead of Jira Cloud, or need more specialized Jira operations beyond the generic API tools provided.
Tools this server exposes
5 tools extracted from the READMEjira_getGET any Jira API endpoint (read data)
jira_postPOST to any endpoint (create resources)
jira_putPUT any endpoint (replace resources)
jira_patchPATCH any endpoint (partial updates)
jira_deleteDELETE any endpoint (remove resources)
Comparable tools
Installation
Install the MCP server globally:
npm install -g @aashari/mcp-server-atlassian-jiraFor Claude Desktop users, add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@aashari/mcp-server-atlassian-jira"],
"env": {
"ATLASSIAN_SITE_NAME": "your-company",
"ATLASSIAN_USER_EMAIL": "your.email@company.com",
"ATLASSIAN_API_TOKEN": "your_api_token"
}
}
}
}FAQ
- What permissions do I need?
- Your Atlassian account needs access to Jira with appropriate permissions for the projects you want to query, and an API token with appropriate permissions (automatically granted when you create one).
- Can I use this with Jira Server (on-premise)?
- Currently, this tool only supports Jira Cloud. Jira Server/Data Center support may be added in future versions.
Compare mcp-server-atlassian-jira with
Last updated · Auto-generated from public README + GitHub signals.