StillOnline for VS Code
io.github.shenwell/stillonline
StillOnline MCP: uptime, status pages, checks. REST API for Cursor and Claude Code.
client:VS Code
transport:stdio
runtime:npm
Install StillOnline in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "stillonline-api-key",
"description": "STILLONLINE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "stillonline-api-base",
"description": "STILLONLINE_API_BASE",
"password": true
}
],
"servers": {
"stillonline": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"stillonline-mcp"
],
"env": {
"STILLONLINE_API_KEY": "${input:stillonline-api-key}",
"STILLONLINE_API_BASE": "${input:stillonline-api-base}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs