AgentWatch for VS Code
io.github.nicofains1/agentwatch
Multi-agent observability: cascade failure detection, heartbeats, and forensic replay
client:VS Code
transport:stdio
runtime:npm
Install AgentWatch in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentwatch-db",
"description": "AGENTWATCH_DB",
"password": true
}
],
"servers": {
"agentwatch": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@nicofains1/agentwatch"
],
"env": {
"AGENTWATCH_DB": "${input:agentwatch-db}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs