other
Acuity Scheduling MCP Integration for CrewAI
Connect Acuity Scheduling to CrewAI through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Acuity Scheduling to CrewAI
Expose KosmoKrator integrations to CrewAI workers as scoped local tools.
Wrap kosmo integrations:call for specific tasks or connect workers to a local MCP gateway. The gateway is local, scoped to this integration, and starts with
--write=deny so CrewAI can inspect read-capable tools without receiving write access by default.
Acuity Scheduling MCP Config for CrewAI
Use per-worker integration scopes to avoid giving every worker every tool.
{
"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 CrewAI
CrewAI 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. |