mcp zuul for VS Code
io.github.imatza-rh/mcp-zuul
Zuul CI — build failure analysis, log search, pipeline status, and job configuration
client:VS Code
transport:stdio
runtime:pypi
Install mcp zuul in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "zuul-url",
"description": "ZUUL_URL",
"password": true
},
{
"type": "promptString",
"id": "zuul-default-tenant",
"description": "ZUUL_DEFAULT_TENANT",
"password": true
},
{
"type": "promptString",
"id": "zuul-auth-token",
"description": "ZUUL_AUTH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "zuul-use-kerberos",
"description": "ZUUL_USE_KERBEROS",
"password": true
},
{
"type": "promptString",
"id": "mcp-transport",
"description": "MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "zuul-enabled-tools",
"description": "ZUUL_ENABLED_TOOLS",
"password": true
},
{
"type": "promptString",
"id": "zuul-disabled-tools",
"description": "ZUUL_DISABLED_TOOLS",
"password": true
}
],
"servers": {
"mcp-zuul": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-zuul"
],
"env": {
"ZUUL_URL": "${input:zuul-url}",
"ZUUL_DEFAULT_TENANT": "${input:zuul-default-tenant}",
"ZUUL_AUTH_TOKEN": "${input:zuul-auth-token}",
"ZUUL_USE_KERBEROS": "${input:zuul-use-kerberos}",
"MCP_TRANSPORT": "${input:mcp-transport}",
"ZUUL_ENABLED_TOOLS": "${input:zuul-enabled-tools}",
"ZUUL_DISABLED_TOOLS": "${input:zuul-disabled-tools}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs