Back to Browse

Zenoti MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

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

About

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

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

5 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Zenoti API key from Admin → Settings → Apps (backend app)Required

Environment variable: ZENOTI_API_KEY

Zenoti API base URL (default https://api.zenoti.com)Optional

Environment variable: ZENOTI_API_URL

Default center GUID used when tools omit center_id (recommended)Optional

Environment variable: ZENOTI_CENTER_ID

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "com-jamesrosingmd-zenoti": {
      "env": {
        "ZENOTI_API_KEY": "your-zenoti-api-key-here",
        "ZENOTI_API_URL": "your-zenoti-api-url-here",
        "ZENOTI_CENTER_ID": "your-zenoti-center-id-here"
      },
      "args": [
        "-y",
        "zenoti-mcp-server"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Zenoti MCP Server

A Model Context Protocol (MCP) server for the Zenoti spa/wellness/medspa management platform. Exposes appointments, guests, service booking, invoices, catalog, and forms as tools an AI agent can call.

Hosted version available

Do not want to manage credentials, hosting, and updates yourself? DOCK is the managed version of this server: encrypted per-practice auth, audit logs, draft-first write actions, and a workflow library. Founding practices lock lifetime pricing: Front Desk $49/mo (Zenoti), Billing Desk $99/mo (Tebra, BAA included), Full Practice $129/mo (both). https://dockhq.vercel.app

Installation

npm install -g zenoti-mcp-server

Or run from source:

git clone https://github.com/tacit-code/zenoti-mcp-server.git
cd zenoti-mcp-server
npm install
npm run build

Configuration

VariableRequiredDescription
ZENOTI_API_KEYyesAPI key from Zenoti Admin → Settings → Apps (create a backend app)
ZENOTI_API_URLnoBase URL, default https://api.zenoti.com (with or without /v1)
ZENOTI_CENTER_IDrecommendedDefault center GUID; tools accept center_id to override per call

Claude Desktop / Claude Code config:

{
  "mcpServers": {
    "zenoti": {
      "command": "npx",
      "args": ["-y", "zenoti-mcp-server"],
      "env": {
        "ZENOTI_API_KEY": "your_api_key",
        "ZENOTI_CENTER_ID": "your_center_guid"
      }
    }
  }
}

The server starts even without credentials and returns a readable configuration error on each tool call, so a misconfigured client shows the problem instead of crash-looping.

Tools

Catalog

ToolPurpose
zenoti-centers-listList organization centers (find center GUIDs)
zenoti-services-listServices of a center (compact by default, verbose for raw)
zenoti-services-getFull service details
zenoti-therapists-listTherapists of a center, optionally filtered to a service
zenoti-employee-schedulesWho is on shift for a date range (date-scoped staffing)

Guests

ToolPurpose
zenoti-guests-searchSearch by name/email/phone/code/tags (≥1 criterion required)
zenoti-guests-createCreate a guest profile
zenoti-guests-getGuest details by GUID
zenoti-guests-updateUpdate fields — does a safe read-merge-write (Zenoti replaces the whole object on update)
zenoti-guests-appointmentsAppointment history for a guest
zenoti-guests-notes-list / zenoti-guests-notes-addGuest notes and profile alerts
zenoti-guests-membershipsGuest's memberships (status, credits, dues)
zenoti-guests-packagesGuest's packages/series with remaining redemptions

Appointments

ToolPurpose
zenoti-appointments-listCenter appointments for a date range (compact by default)
zenoti-appointments-getAppointment details (appointment_id)
zenoti-appointments-checkin / zenoti-appointments-undo-checkinCheck-in state (appointment_group_id)
zenoti-appointments-noshowMark no-show (appointment_group_id)
zenoti-appointments-progressStart/open/complete service (appointment_id)
zenoti-appointments-cancelCancel a booking (by invoice_id)
zenoti-appointments-rescheduleStart a reschedule (creates a booking draft tied to the invoice)

Booking flow

  1. zenoti-availability-slots — creates a booking draft for guest+service+date and returns booking_id plus open slots
  2. zenoti-booking-reserve — hold a chosen slot (holds are short-lived)
  3. zenoti-booking-confirm — finalize; the response includes the invoice

Invoices

ToolPurpose
zenoti-invoices-getInvoice with line items, payments, and optional dues/fees
zenoti-invoices-pay-customRecord a cash/custom payment (financial action)
zenoti-invoices-pay-cardCharge the guest's card on file (financial action)
zenoti-invoices-closeClose a fully-paid invoice
zenoti-invoices-emailEmail the receipt/invoice to the guest
zenoti-invoices-confirm-visitConfirm (or undo-confirm) the visit — a scheduling status, despite living on the invoice

Reports

ToolPurpose
zenoti-reports-salesWhat was sold over a date range
zenoti-reports-collectionsMoney received over a date range

Forms & feedback

ToolPurpose
zenoti-forms-list / zenoti-forms-getForms and submitted form data of an appointment
zenoti-guest-forms-listForms on a guest profile
zenoti-feedback-submitInsert externally collected guest feedback

Zenoti API gotchas this server handles

  • Three identifiers in one workflow. Check-in/no-show/feedback take appointment_group_id; details/progress/forms take appointment_id; cancel and payments take invoice_id. Tool schemas name the exact one required.
  • Guest updates replace the whole object. The update tool fetches the current profile and merges your changes; a naive partial PUT would erase fields.
  • Rate limit is 60 calls/minute (org-wide). The HTTP layer honors Retry-After on 429. Reads also retry on 5xx/network failures/timeouts; writes retry only on 429 (a rate-limit rejection was never processed, so retrying can't duplicate a booking — any other write failure surfaces immediately).
  • Pagination caps at size=100; larger values are rejected by Zenoti with a 422.
  • Webhooks have no subscription API — they are configured in the Zenoti web UI (Admin → Webhooks) and require the Zenoti API package. This server intentionally has no webhook tool.
  • Undocumented numeric enums. Gender and appointment-progress codes aren't in Zenoti's public docs; the mappings used here are documented in the tool descriptions and can be overridden (progress_code).

Development

npm run dev        # run from source (tsx)
npm test           # unit + end-to-end tests (mock Zenoti API; no real credentials needed)
npm run typecheck  # tsc --noEmit
npm run build      # emit dist/

The e2e suite spawns the real server over stdio via the MCP SDK client and asserts every tool's method, path, query, and body against Zenoti's documented endpoints.

License

MIT

Reviews

No reviews yet

Be the first to review this server!