AgentHubAgentHub

mcp-jira-server

MCP ServerMCP Registry官方收录

io.github.edrich13/mcp-jira-server · v1.0.1

MCP server for self-hosted Jira instance with Personal Access Token authentication

概览

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

安装

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

{
  "mcpServers": {
    "mcp-jira-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-jira-server"
      ],
      "env": {
        "JIRA_BASE_URL": "<JIRA_BASE_URL>",
        "JIRA_PAT": "<JIRA_PAT>"
      }
    }
  }
}

环境变量

JIRA_BASE_URL必填

Base URL of your Jira instance (e.g., https://jira.domain.com)

JIRA_PAT必填secret

Your Jira Personal Access Token

相关资源

统一 Manifest

{
  "id": "io.github.edrich13/mcp-jira-server",
  "type": "mcp-server",
  "version": "1.0.1",
  "displayName": "mcp-jira-server",
  "description": "MCP server for self-hosted Jira instance with Personal Access Token authentication",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "mcp-jira-server",
        "version": "1.0.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "JIRA_BASE_URL",
            "description": "Base URL of your Jira instance (e.g., https://jira.domain.com)",
            "isRequired": true
          },
          {
            "name": "JIRA_PAT",
            "description": "Your Jira Personal Access Token",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.edrich13/mcp-jira-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.edrich13%2Fmcp-jira-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp-jira-server — MCP Server 安装与配置 · AgentHub