other
Acuity Scheduling MCP Integration for Cursor
Connect Acuity Scheduling to Cursor through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Acuity Scheduling to Cursor
Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server.
Create or update .cursor/mcp.json with a KosmoKrator stdio server entry. The gateway is local, scoped to this integration, and starts with
--write=deny so Cursor can inspect read-capable tools without receiving write access by default.
Acuity Scheduling MCP Config for Cursor
Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
{
"mcpServers": {
"kosmokrator-acuity-scheduling": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=acuity-scheduling",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=acuity-scheduling --write=deny Why Use KosmoKrator Here
Expose only Acuity Scheduling instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Acuity Scheduling Tools Visible to Cursor
Cursor sees stable MCP tool names generated from the Acuity Scheduling integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__acuity_scheduling__acuity_list_appointments | acuity-scheduling.acuity_list_appointments | Read | List appointments from Acuity Scheduling. Returns upcoming and past appointments with client details, date/time, and status. Use filters to narrow results by date range, calendar, or appointment type. |
integration__acuity_scheduling__acuity_get_appointment | acuity-scheduling.acuity_get_appointment | Read | Get full details of a specific appointment in Acuity Scheduling by its ID. Returns client info, date/time, location, forms, and status. |
integration__acuity_scheduling__acuity_list_clients | acuity-scheduling.acuity_list_clients | Read | List clients from Acuity Scheduling. Search by name, email, or phone. Returns client contact information and history. |
integration__acuity_scheduling__acuity_list_calendars | acuity-scheduling.acuity_list_calendars | Read | List all calendars in Acuity Scheduling. Returns calendar IDs, names, and timezone info. Use calendar IDs to filter appointments. |
integration__acuity_scheduling__acuity_list_appointment_types | acuity-scheduling.acuity_list_appointment_types | Read | List all appointment types (services) in Acuity Scheduling. Returns type IDs, names, duration, price, and category. Use type IDs to filter appointments or check availability. |
integration__acuity_scheduling__acuity_cancel_appointment | acuity-scheduling.acuity_cancel_appointment | Write | Cancel an existing appointment in Acuity Scheduling. Requires the appointment ID. The appointment will be marked as cancelled and the client will be notified according to notification settings. |
integration__acuity_scheduling__acuity_get_availability | acuity-scheduling.acuity_get_availability | Read | Get available time slots for booking in Acuity Scheduling. Returns open times for a given appointment type, date, and optional calendar. |
integration__acuity_scheduling__acuity_get_current_user | acuity-scheduling.acuity_get_current_user | Read | Get the currently authenticated Acuity Scheduling user profile. Returns user name, email, timezone, and account details. |