conductor graph mcp for VS Code
io.github.base76-research-lab/conductor-graph-mcp
Exposes a CognOS agent system as a machine-readable graph. Full system snapshot with one tool call.
client:VS Code
transport:stdio
runtime:pypi
Install conductor graph mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cognos-base-url",
"description": "COGNOS_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "cognos-api-key",
"description": "COGNOS_API_KEY",
"password": true
}
],
"servers": {
"conductor-graph-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"conductor-graph-mcp"
],
"env": {
"COGNOS_BASE_URL": "${input:cognos-base-url}",
"COGNOS_API_KEY": "${input:cognos-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