systemdox runbooks for VS Code
io.github.puglieseweb/systemdox-runbooks
Your runbooks as agent tools: scripts from runbooks.json served as typed, allowlisted MCP tools.
client:VS Code
transport:stdio
runtime:npm
Install systemdox runbooks in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "runbook-mcp-manifest",
"description": "RUNBOOK_MCP_MANIFEST",
"password": true
},
{
"type": "promptString",
"id": "runbook-mcp-dry-run",
"description": "RUNBOOK_MCP_DRY_RUN",
"password": true
}
],
"servers": {
"systemdox-runbooks": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@systemdox/runbook-mcp"
],
"env": {
"RUNBOOK_MCP_MANIFEST": "${input:runbook-mcp-manifest}",
"RUNBOOK_MCP_DRY_RUN": "${input:runbook-mcp-dry-run}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs