Skip to content
VS Code

WardenPoint for VS Code

io.github.wardenpoint/wardenpoint-mcp

Configure on-call alerting from an AI agent: recipients, groups, escalation policies, schedules.

client:VS Code transport:stdio runtime:npm

Install WardenPoint in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wardenpoint-base-url",
      "description": "WARDENPOINT_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wardenpoint-api-token",
      "description": "WARDENPOINT_API_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wardenpoint-timeout-ms",
      "description": "WARDENPOINT_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wardenpoint-allow-insecure-tls",
      "description": "WARDENPOINT_ALLOW_INSECURE_TLS",
      "password": true
    }
  ],
  "servers": {
    "wardenpoint-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@wardenpoint/mcp-server"
      ],
      "env": {
        "WARDENPOINT_BASE_URL": "${input:wardenpoint-base-url}",
        "WARDENPOINT_API_TOKEN": "${input:wardenpoint-api-token}",
        "WARDENPOINT_TIMEOUT_MS": "${input:wardenpoint-timeout-ms}",
        "WARDENPOINT_ALLOW_INSECURE_TLS": "${input:wardenpoint-allow-insecure-tls}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

WardenPoint in other clients