Skip to content
VS Code

zenoti for VS Code

com.jamesrosingmd/zenoti

MCP server for Zenoti spa/wellness/medspa — guests, appointments, bookings, invoices

client:VS Code transport:stdio runtime:npm

Install zenoti in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "zenoti-api-key",
      "description": "ZENOTI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zenoti-api-url",
      "description": "ZENOTI_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "zenoti-center-id",
      "description": "ZENOTI_CENTER_ID",
      "password": true
    }
  ],
  "servers": {
    "zenoti": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "zenoti-mcp-server"
      ],
      "env": {
        "ZENOTI_API_KEY": "${input:zenoti-api-key}",
        "ZENOTI_API_URL": "${input:zenoti-api-url}",
        "ZENOTI_CENTER_ID": "${input:zenoti-center-id}"
      }
    }
  }
}

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

zenoti in other clients