productivity
Cal.com CLI for Shell Scripts
Use the Cal.com CLI for shell scripts with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 6 read 1 write Bearer token auth
Cal.com CLI for Shell Scripts
Call integration functions from shell scripts with stable JSON input and output.
Use shell scripts for small local automations that need one or more integration calls. 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 Shell Scripts
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
| Function | Type | Parameters | Description |
|---|---|---|---|
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
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.