Home/Servers/Jira MCP Server

Jira MCP Server

by sooperset ยท โญ 567 stars ยท updated 3 months ago

Issue and project management with Jira. Create tickets, update status, search issues, manage sprints, and query project data through your AI assistant.

75
Good

Quality Score Breakdown

maintenance76/100
community74/100
documentation76/100
compatibility74/100

Use Cases

  • โœ“create Jira tickets
  • โœ“update issue status
  • โœ“search issues
  • โœ“sprint management

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "jira": {
      "command": "python",
      "args": [
        "-m",
        "mcp_atlassian"
      ],
      "env": {
        "JIRA_URL": "https://yourcompany.atlassian.net",
        "JIRA_EMAIL": "you@company.com",
        "JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "jira": {
      "command": "python",
      "args": [
        "-m",
        "mcp_atlassian"
      ],
      "env": {
        "JIRA_URL": "https://yourcompany.atlassian.net",
        "JIRA_EMAIL": "you@company.com",
        "JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "jira": {
        "command": "python",
        "args": [
          "-m",
          "mcp_atlassian"
        ],
        "env": {
          "JIRA_URL": "https://yourcompany.atlassian.net",
          "JIRA_EMAIL": "you@company.com",
          "JIRA_API_TOKEN": "YOUR_JIRA_TOKEN"
        }
      }
    }
  }
}
โ† Back to all servers