KosmoKrator

scheduling

Cal.com CLI for Cron Jobs

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

6 functions 5 read 1 write Bearer token auth

Cal.com CLI for Cron Jobs

Schedule repeatable integration workflows from cron while keeping credentials in KosmoKrator config.

Use the headless CLI from cron when an operation should run without an interactive agent session. 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 Cron Jobs
kosmokrator integrations:configure cal --set access_token="$CAL_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call cal.cal_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 --json
kosmo integrations:docs cal.cal_list_event_types --json
kosmo integrations:schema cal.cal_list_event_types --json
kosmo integrations:search "Cal.com" --json
kosmo integrations:list --json

Useful Cal.com CLI Functions

FunctionTypeParametersDescription
cal.cal_list_event_types Read limit, page, teamId List available event types (booking link templates) from Cal.com. Supports filtering by team and pagination.
cal.cal_get_event_type Read id Get detailed information about a specific event type from Cal.com by its ID.
cal.cal_list_bookings Read limit, page, status, eventTypeId List bookings from Cal.com with optional filtering by status, event type, and pagination.
cal.cal_get_booking Read id Get detailed information about a specific booking from Cal.com by its ID.
cal.cal_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.cal_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