other
Acuity Scheduling MCP Gateway for AI Agents
Expose Acuity Scheduling tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
8 functions 7 read 1 write Manual OAuth token auth
Acuity Scheduling MCP Gateway
Expose Acuity Scheduling to MCP clients with `kosmokrator mcp:serve --integration=acuity-scheduling`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=acuity-scheduling --write=deny --json {
"mcpServers": {
"kosmokrator-acuity-scheduling": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=acuity-scheduling",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=acuity-scheduling --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__acuity_scheduling__acuity_list_appointments | acuity-scheduling.acuity_list_appointments | Read read |
integration__acuity_scheduling__acuity_get_appointment | acuity-scheduling.acuity_get_appointment | Read read |
integration__acuity_scheduling__acuity_list_clients | acuity-scheduling.acuity_list_clients | Read read |
integration__acuity_scheduling__acuity_list_calendars | acuity-scheduling.acuity_list_calendars | Read read |
integration__acuity_scheduling__acuity_list_appointment_types | acuity-scheduling.acuity_list_appointment_types | Read read |
integration__acuity_scheduling__acuity_cancel_appointment | acuity-scheduling.acuity_cancel_appointment | Write write |
integration__acuity_scheduling__acuity_get_availability | acuity-scheduling.acuity_get_availability | Read read |
integration__acuity_scheduling__acuity_get_current_user | acuity-scheduling.acuity_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.