AgentHubAgentHub

jira-mcp

MCP ServerMCP Registry官方收录

io.github.xcollantes/jira-mcp · v0.2.2

Feature-rich MCP for controlling Jira through LLM clients. Safe for corporate environments.

概览

jira-mcp 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "jira-mcp": {
      "command": "uvx",
      "args": [
        "jira-tools-mcp"
      ],
      "env": {
        "JIRA_API_TOKEN": "<JIRA_API_TOKEN>",
        "JIRA_AUTH_TYPE": "<JIRA_AUTH_TYPE>"
      }
    }
  }
}

环境变量

JIRA_API_TOKEN必填secret

Your Jira API key for the service

JIRA_AUTH_TYPE必填

Your Jira authentication type

相关资源

统一 Manifest

{
  "id": "io.github.xcollantes/jira-mcp",
  "type": "mcp-server",
  "version": "0.2.2",
  "displayName": "jira-mcp",
  "description": "Feature-rich MCP for controlling Jira through LLM clients. Safe for corporate environments.",
  "repository": {
    "url": "https://github.com/xcollantes/jira-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "jira-tools-mcp",
        "version": "0.2.2",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "JIRA_API_TOKEN",
            "description": "Your Jira API key for the service",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "JIRA_AUTH_TYPE",
            "description": "Your Jira authentication type",
            "isRequired": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.xcollantes/jira-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.xcollantes%2Fjira-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
jira-mcp — MCP Server 安装与配置 · AgentHub