MCP Catalogs
Home

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.

developer-toolsproductivityai-llm
26
Forks
22
Open issues
2 mo ago
Last commit
2d ago
Indexed

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:

you:Developers accessing issue details and development context directly through AI
you:Project managers tracking progress, priorities, and team assignments via natural language queries
you:QA engineers tracking bugs and testing status without switching contexts
you:What permissions do I need?
you:Can I use this with Jira Server (on-premise)?

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 README
  • jira_get

    GET any Jira API endpoint (read data)

  • jira_post

    POST to any endpoint (create resources)

  • jira_put

    PUT any endpoint (replace resources)

  • jira_patch

    PATCH any endpoint (partial updates)

  • jira_delete

    DELETE any endpoint (remove resources)

Comparable tools

jira-climcp-server-githubmcp-server-trello

Installation

Install the MCP server globally:

npm install -g @aashari/mcp-server-atlassian-jira

For 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.