KosmoKrator

communication

Daily.co CLI for AI Agents

Use the Daily.co CLI from KosmoKrator to call Daily.co tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

7 functions 5 read 2 write API key auth

Daily.co CLI Setup

Daily.co can be configured headlessly with `kosmokrator integrations:configure daily-co`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure daily-co --set api_key="$DAILY_CO_API_KEY" --enable --read allow --write ask --json
kosmokrator integrations:doctor daily-co --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
api_key DAILY_CO_API_KEY Secret secret yes API Key
url DAILY_CO_URL URL url no API Base URL

Call Daily.co Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call daily-co.daily_co_list_rooms '{
  "limit": 1,
  "ending_before": "example_ending_before",
  "starting_after": "example_starting_after"
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:daily-co daily_co_list_rooms '{
  "limit": 1,
  "ending_before": "example_ending_before",
  "starting_after": "example_starting_after"
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

kosmo integrations:docs daily-co --json
kosmo integrations:docs daily-co.daily_co_list_rooms --json
kosmo integrations:schema daily-co.daily_co_list_rooms --json
kosmo integrations:search "Daily.co" --json
kosmo integrations:list --json

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Daily.co.

daily-co.daily_co_list_rooms

Read read

List video rooms from Daily.co. Returns a paginated list of rooms with their names, URLs, privacy settings, and creation dates.

Parameters
limit, ending_before, starting_after

Generic CLI call

kosmo integrations:call daily-co.daily_co_list_rooms '{"limit":1,"ending_before":"example_ending_before","starting_after":"example_starting_after"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_list_rooms '{"limit":1,"ending_before":"example_ending_before","starting_after":"example_starting_after"}' --json

daily-co.daily_co_get_room

Read read

Get details of a specific Daily.co room by name, including its URL, privacy setting, configuration properties, and participant limits.

Parameters
name

Generic CLI call

kosmo integrations:call daily-co.daily_co_get_room '{"name":"example_name"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_get_room '{"name":"example_name"}' --json

daily-co.daily_co_create_room

Write write

Create a new Daily.co video room. Specify a room name and optional properties like privacy mode, max participants, and recording settings.

Parameters
name, privacy, properties

Generic CLI call

kosmo integrations:call daily-co.daily_co_create_room '{"name":"example_name","privacy":"example_privacy","properties":"example_properties"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_create_room '{"name":"example_name","privacy":"example_privacy","properties":"example_properties"}' --json

daily-co.daily_co_delete_room

Write write

Delete a Daily.co video room by name. This permanently removes the room and it cannot be rejoined.

Parameters
name

Generic CLI call

kosmo integrations:call daily-co.daily_co_delete_room '{"name":"example_name"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_delete_room '{"name":"example_name"}' --json

daily-co.daily_co_list_meetings

Read read

List meetings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination.

Parameters
room, limit, starting_after, ending_before

Generic CLI call

kosmo integrations:call daily-co.daily_co_list_meetings '{"room":"example_room","limit":1,"starting_after":"example_starting_after","ending_before":"example_ending_before"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_list_meetings '{"room":"example_room","limit":1,"starting_after":"example_starting_after","ending_before":"example_ending_before"}' --json

daily-co.daily_co_get_meeting

Read read

Get details of a specific Daily.co meeting by ID, including participant information, duration, and session data.

Parameters
meeting_id

Generic CLI call

kosmo integrations:call daily-co.daily_co_get_meeting '{"meeting_id":"example_meeting_id"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_get_meeting '{"meeting_id":"example_meeting_id"}' --json

daily-co.daily_co_list_recordings

Read read

List recordings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination.

Parameters
room, limit, starting_after, ending_before

Generic CLI call

kosmo integrations:call daily-co.daily_co_list_recordings '{"room":"example_room","limit":1,"starting_after":"example_starting_after","ending_before":"example_ending_before"}' --json

Provider shortcut

kosmo integrations:daily-co daily_co_list_recordings '{"room":"example_room","limit":1,"starting_after":"example_starting_after","ending_before":"example_ending_before"}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

daily-co.daily_co_list_rooms

List video rooms from Daily.co. Returns a paginated list of rooms with their names, URLs, privacy settings, and creation dates.

Operation
Read read
Schema command
kosmo integrations:schema daily-co.daily_co_list_rooms --json
ParameterTypeRequiredDescription
limit integer no Maximum number of rooms to return (default: 20, max: 100).
ending_before string no Room ID used for cursor-based pagination. Returns rooms before this ID.
starting_after string no Room ID used for cursor-based pagination. Returns rooms after this ID.

daily-co.daily_co_get_room

Get details of a specific Daily.co room by name, including its URL, privacy setting, configuration properties, and participant limits.

Operation
Read read
Schema command
kosmo integrations:schema daily-co.daily_co_get_room --json
ParameterTypeRequiredDescription
name string yes The room name.

daily-co.daily_co_create_room

Create a new Daily.co video room. Specify a room name and optional properties like privacy mode, max participants, and recording settings.

Operation
Write write
Schema command
kosmo integrations:schema daily-co.daily_co_create_room --json
ParameterTypeRequiredDescription
name string no A unique name for the room. If omitted, Daily.co generates a random name.
privacy string no Room privacy: "private" (default) or "public".
properties object no Room configuration as a JSON object (e.g., {"max_participants": 10, "enable_recording": "cloud", "exp": 1700000000}).

daily-co.daily_co_delete_room

Delete a Daily.co video room by name. This permanently removes the room and it cannot be rejoined.

Operation
Write write
Schema command
kosmo integrations:schema daily-co.daily_co_delete_room --json
ParameterTypeRequiredDescription
name string yes The room name to delete.

daily-co.daily_co_list_meetings

List meetings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination.

Operation
Read read
Schema command
kosmo integrations:schema daily-co.daily_co_list_meetings --json
ParameterTypeRequiredDescription
room string no Filter meetings by room name.
limit integer no Maximum number of meetings to return (default: 20, max: 100).
starting_after string no Meeting ID used for cursor-based pagination. Returns meetings after this ID.
ending_before string no Meeting ID used for cursor-based pagination. Returns meetings before this ID.

daily-co.daily_co_get_meeting

Get details of a specific Daily.co meeting by ID, including participant information, duration, and session data.

Operation
Read read
Schema command
kosmo integrations:schema daily-co.daily_co_get_meeting --json
ParameterTypeRequiredDescription
meeting_id string yes The meeting UUID.

daily-co.daily_co_list_recordings

List recordings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination.

Operation
Read read
Schema command
kosmo integrations:schema daily-co.daily_co_list_recordings --json
ParameterTypeRequiredDescription
room string no Filter recordings by room name.
limit integer no Maximum number of recordings to return (default: 20, max: 100).
starting_after string no Recording ID used for cursor-based pagination. Returns recordings after this ID.
ending_before string no Recording ID used for cursor-based pagination. Returns recordings before this ID.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.