Sign inSign up

miklosbagi/jira-zephyr-mcp

By miklosbagi

Updated 20 days ago

An server for JIRA and **Zephyr Scale** (test management)

Image
API management
Machine learning & AI
0

9.9K

miklosbagi/jira-zephyr-mcp repository overview

MCP quick start (Cursor & other hosts)

Cursor and some MCP hosts do not use the same PATH as your terminal. Set command to the absolute path of the Docker CLI (e.g. macOS Docker Desktop: /usr/local/bin/docker; Linux: often /usr/bin/docker) and add PATH to env next to your Jira/Zephyr variables. After editing ~/.cursor/mcp.json or .cursor/mcp.json, restart Cursor or reload MCP. Docker Desktop must be running.

Do not put the entire docker run … string in command with an empty args array—use command = docker binary, args = ["run", …].

EU Zephyr example (replace secrets):

{
  "mcpServers": {
    "jira-zephyr": {
      "command": "/usr/local/bin/docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", "JIRA_BASE_URL",
        "-e", "JIRA_USERNAME",
        "-e", "JIRA_API_TOKEN",
        "-e", "ZEPHYR_API_TOKEN",
        "-e", "ZEPHYR_BASE_URL",
        "miklosbagi/jira-zephyr-mcp:latest"
      ],
      "env": {
        "PATH": "/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/opt/homebrew/bin",
        "JIRA_BASE_URL": "https://your-domain.atlassian.net",
        "JIRA_USERNAME": "[email protected]",
        "JIRA_API_TOKEN": "your-jira-api-token",
        "ZEPHYR_API_TOKEN": "your-zephyr-api-token",
        "ZEPHYR_BASE_URL": "https://eu.api.zephyrscale.smartbear.com/v2"
      }
    }
  }
}
  • US: remove ZEPHYR_BASE_URL from args and env.
  • Pinned tag: use miklosbagi/jira-zephyr-mcp:v0.14.0 (or another tag) instead of :latest in args.
  • GHCR: ghcr.io/miklosbagi/jira-zephyr-mcp:latest (same command / args shape).

Full repo: github.com/miklosbagi/jira-zephyr-mcp.

Please note that every PR on git pushes a docker dev tag to grant testing opportunity.

Tag summary

Content type

Image

Digest

sha256:61140b4af

Size

55.7 MB

Last updated

2 months ago

docker pull miklosbagi/jira-zephyr-mcp