KosmoKrator

productivity

Cal.com CLI for CI

Use the Cal.com CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 6 read 1 write Bearer token auth

Cal.com CLI for CI

Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.

Use this shape when a pipeline needs to read or update an external service. The Cal.com CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Cal.com CLI for CI
kosmokrator integrations:configure cal-com --set access_token="$CAL_COM_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call cal-com.cal_com_list_event_types '{"limit":1,"page":1,"teamId":1}' --json

Discovery Before Execution

Agents and scripts can inspect Cal.com docs and schemas before choosing a function.

kosmo integrations:docs cal-com --json
kosmo integrations:docs cal-com.cal_com_list_event_types --json
kosmo integrations:schema cal-com.cal_com_list_event_types --json
kosmo integrations:search "Cal.com" --json
kosmo integrations:list --json

Useful Cal.com CLI Functions

FunctionTypeParametersDescription
cal-com.cal_com_list_event_types Read limit, page, teamId List available event types (booking link templates) from Cal.com. Supports filtering by team and pagination.
cal-com.cal_com_get_event_type Read id Get detailed information about a specific event type from Cal.com by its ID.
cal-com.cal_com_create_booking Write eventTypeId, start, end, responses Create a new booking in Cal.com for a specific event type. Provide the event type, start/end times, and attendee information.
cal-com.cal_com_list_bookings Read limit, page, status, eventTypeId List bookings from Cal.com with optional filtering by status, event type, and pagination.
cal-com.cal_com_get_booking Read id Get detailed information about a specific booking from Cal.com by its ID.
cal-com.cal_com_list_teams Read limit, page List teams in your Cal.com organization. Supports pagination.
cal-com.cal_com_get_current_user Read none Get the authenticated Cal.com user's profile information, including name, email, and time zone.

Automation Notes

Related Cal.com CLI Pages