MCP Health Monitor for VS Code
io.github.oaslananka/mcp-health-monitor
Monitor MCP server health, uptime, response times, and Azure DevOps pipeline status
client:VS Code
transport:stdio
runtime:npm
Install MCP Health Monitor in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "health-monitor-db",
"description": "HEALTH_MONITOR_DB",
"password": true
},
{
"type": "promptString",
"id": "health-monitor-auto-check",
"description": "HEALTH_MONITOR_AUTO_CHECK",
"password": true
}
],
"servers": {
"mcp-health-monitor": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-health-monitor"
],
"env": {
"HEALTH_MONITOR_DB": "${input:health-monitor-db}",
"HEALTH_MONITOR_AUTO_CHECK": "${input:health-monitor-auto-check}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs