status-aggregator for VS Code
io.github.weiseer/status-aggregator
Cross-vendor SaaS status aggregator for AI agents (Anthropic/OpenAI/AWS/GH/Stripe/CF).
client:VS Code
transport:stdio
runtime:npm
Install status-aggregator in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "status-agg-url",
"description": "STATUS_AGG_URL",
"password": true
},
{
"type": "promptString",
"id": "status-agg-local-only",
"description": "STATUS_AGG_LOCAL_ONLY",
"password": true
}
],
"servers": {
"status-aggregator": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@weiseer/status-aggregator-mcp"
],
"env": {
"STATUS_AGG_URL": "${input:status-agg-url}",
"STATUS_AGG_LOCAL_ONLY": "${input:status-agg-local-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs