zephyr scale mcp for VS Code
io.github.vilaabo/zephyr-scale-mcp
Zephyr Scale on self-hosted Jira Server/DC: test cases, cycles, executions, plans and attachments
client:VS Code
transport:stdio
runtime:npm
Install zephyr scale mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "jira-base-url",
"description": "JIRA_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "jira-pat",
"description": "JIRA_PAT",
"password": true
},
{
"type": "promptString",
"id": "jira-auth",
"description": "JIRA_AUTH",
"password": true
},
{
"type": "promptString",
"id": "jira-username",
"description": "JIRA_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "jira-password",
"description": "JIRA_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "zephyr-default-project-key",
"description": "ZEPHYR_DEFAULT_PROJECT_KEY",
"password": true
},
{
"type": "promptString",
"id": "zephyr-allow-internal-api",
"description": "ZEPHYR_ALLOW_INTERNAL_API",
"password": true
},
{
"type": "promptString",
"id": "zephyr-readonly",
"description": "ZEPHYR_READONLY",
"password": true
},
{
"type": "promptString",
"id": "jira-tls-reject-unauthorized",
"description": "JIRA_TLS_REJECT_UNAUTHORIZED",
"password": true
},
{
"type": "promptString",
"id": "jira-timeout-ms",
"description": "JIRA_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "jira-max-retries",
"description": "JIRA_MAX_RETRIES",
"password": true
},
{
"type": "promptString",
"id": "zephyr-log-level",
"description": "ZEPHYR_LOG_LEVEL",
"password": true
}
],
"servers": {
"zephyr-scale-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"zephyr-scale-mcp"
],
"env": {
"JIRA_BASE_URL": "${input:jira-base-url}",
"JIRA_PAT": "${input:jira-pat}",
"JIRA_AUTH": "${input:jira-auth}",
"JIRA_USERNAME": "${input:jira-username}",
"JIRA_PASSWORD": "${input:jira-password}",
"ZEPHYR_DEFAULT_PROJECT_KEY": "${input:zephyr-default-project-key}",
"ZEPHYR_ALLOW_INTERNAL_API": "${input:zephyr-allow-internal-api}",
"ZEPHYR_READONLY": "${input:zephyr-readonly}",
"JIRA_TLS_REJECT_UNAUTHORIZED": "${input:jira-tls-reject-unauthorized}",
"JIRA_TIMEOUT_MS": "${input:jira-timeout-ms}",
"JIRA_MAX_RETRIES": "${input:jira-max-retries}",
"ZEPHYR_LOG_LEVEL": "${input:zephyr-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs