Back to MCP directory
publicPublicdnsLocal runtime

jira

MCP Jira是一个为Jira Cloud设计的集成服务,提供搜索和读取Jira问题的功能,不支持Jira Server或Data Center。

article

README

🚀 MCP Jira 服务器

模型上下文协议(Model Context Protocol,MCP) 服务器专为 Jira Cloud 产品打造。该集成仅适用于 Jira Cloud 实例,不支持 Jira Server 或 Data Center 部署,为用户在特定环境下提供服务。

🚀 快速开始

若你想使用本服务,可按以下步骤操作:

  1. 从这个链接获取 API 令牌:https://id.atlassian.com/manage-profile/security/api-tokens
  2. 将获取的 API 令牌添加到你的 claude_desktop_config.json 文件中。
  3. 克隆此仓库并运行 npm install 命令来安装依赖。
  4. 运行 npm run build 命令进行构建。
{
  "mcpServers": {
    "jira": {
      "command": "npx",
      "args": [
        "-y",
        "/your/project/path/mcp-jira",
        "--jira-url",
        "https://your-domain.atlassian.net",
        "--jira-username",
        "your.email@domain.com",
        "--jira-api-token",
        "your_api_token"
      ]
    }
  }
}

请注意,要将 /your/project/path/mcp-jira 替换为你实际克隆仓库的路径。

✨ 主要特性

  • 能够搜索和读取 Jira 问题,方便用户快速定位和获取所需信息。

📚 详细文档

🔌 API 文档

工具

Jira 工具
  • jira_get_issue
    • 功能:获取特定 Jira 问题的详细信息。
    • 输入参数
      • issue_key (字符串):Jira 问题键,例如 'PROJ-123'。
      • expand (字符串,可选):要展开的字段。

📄 许可证

本项目遵循 MIT 许可证,请参阅 LICENSE 文件获取详细信息。需要注意的是,此产品并非 Atlassian 的官方产品。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client