DevHelm MCP Server for VS Code
io.github.devhelmhq/mcp-server
Monitor uptime, manage incidents, configure alerting, and query dependency status via DevHelm
client:VS Code
transport:stdio
runtime:pypi
Install DevHelm MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "devhelm-api-token",
"description": "DEVHELM_API_TOKEN",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"devhelm-mcp-server"
],
"env": {
"DEVHELM_API_TOKEN": "${input:devhelm-api-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs