healthchecks io mcp for VS Code
io.github.ronniechong/healthchecks-io-mcp
Unofficial MCP server for managing Healthchecks.io checks via the Management API
client:VS Code
transport:stdio
runtime:npm
Install healthchecks io mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "healthchecks-api-key",
"description": "HEALTHCHECKS_API_KEY",
"password": true
}
],
"servers": {
"healthchecks-io-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@digitalronin/healthchecks-io-mcp"
],
"env": {
"HEALTHCHECKS_API_KEY": "${input:healthchecks-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