Skip to content
VS Code

ezstat mcp server for VS Code

dev.ezstat/ezstat-mcp-server

Track and query EzStat metrics from Claude, Cursor, or any MCP agent. StatHat-compatible.

client:VS Code transport:stdio runtime:npm

Install ezstat mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ezstat-api-key",
      "description": "EZSTAT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ezstat-base-url",
      "description": "EZSTAT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "ezstat-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ezstat-mcp-server"
      ],
      "env": {
        "EZSTAT_API_KEY": "${input:ezstat-api-key}",
        "EZSTAT_BASE_URL": "${input:ezstat-base-url}"
      }
    }
  }
}

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

ezstat mcp server in other clients