Skip to content
VS Code

hatchet mcp for VS Code

io.github.elliotpadfield/hatchet-mcp

Observe and operate Hatchet workflows from an AI agent — runs, logs, trigger, cancel, replay.

client:VS Code transport:stdio runtime:npm

Install hatchet mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "hatchet-client-token",
      "description": "HATCHET_CLIENT_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hatchet-api-base",
      "description": "HATCHET_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hatchet-tenant-id",
      "description": "HATCHET_TENANT_ID",
      "password": true
    }
  ],
  "servers": {
    "hatchet-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "hatchet-mcp"
      ],
      "env": {
        "HATCHET_CLIENT_TOKEN": "${input:hatchet-client-token}",
        "HATCHET_API_BASE": "${input:hatchet-api-base}",
        "HATCHET_TENANT_ID": "${input:hatchet-tenant-id}"
      }
    }
  }
}

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

hatchet mcp in other clients