An server for JIRA and **Zephyr Scale** (test management)
9.9K
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"
}
}
}
}
ZEPHYR_BASE_URL from args and env.miklosbagi/jira-zephyr-mcp:v0.14.0 (or another tag) instead of :latest in args.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.
Content type
Image
Digest
sha256:61140b4af…
Size
55.7 MB
Last updated
2 months ago
docker pull miklosbagi/jira-zephyr-mcp