RCA-MCP for VS Code
io.github.dave1362/rca-mcp-connector
Causal root-cause analysis MCP server -- 56 tools across graphs, RCA models, PyRCA.
client:VS Code
transport:stdio
runtime:pypi
Install RCA-MCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rca-mcp-api-url",
"description": "RCA_MCP_API_URL",
"password": true
},
{
"type": "promptString",
"id": "rca-mcp-api-key",
"description": "RCA_MCP_API_KEY",
"password": true
}
],
"servers": {
"rca-mcp-connector": {
"type": "stdio",
"command": "uvx",
"args": [
"rca-mcp-connector"
],
"env": {
"RCA_MCP_API_URL": "${input:rca-mcp-api-url}",
"RCA_MCP_API_KEY": "${input:rca-mcp-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs