communication
Daily.co MCP Integration for OpenAI Agents SDK
Connect Daily.co to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Daily.co to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Daily.co MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-daily-co": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=daily-co",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=daily-co --write=deny Why Use KosmoKrator Here
Expose only Daily.co instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Daily.co Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Daily.co integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__daily_co__daily_co_list_rooms | daily-co.daily_co_list_rooms | Read | List video rooms from Daily.co. Returns a paginated list of rooms with their names, URLs, privacy settings, and creation dates. |
integration__daily_co__daily_co_get_room | daily-co.daily_co_get_room | Read | Get details of a specific Daily.co room by name, including its URL, privacy setting, configuration properties, and participant limits. |
integration__daily_co__daily_co_create_room | daily-co.daily_co_create_room | Write | Create a new Daily.co video room. Specify a room name and optional properties like privacy mode, max participants, and recording settings. |
integration__daily_co__daily_co_delete_room | daily-co.daily_co_delete_room | Write | Delete a Daily.co video room by name. This permanently removes the room and it cannot be rejoined. |
integration__daily_co__daily_co_list_meetings | daily-co.daily_co_list_meetings | Read | List meetings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination. |
integration__daily_co__daily_co_get_meeting | daily-co.daily_co_get_meeting | Read | Get details of a specific Daily.co meeting by ID, including participant information, duration, and session data. |
integration__daily_co__daily_co_list_recordings | daily-co.daily_co_list_recordings | Read | List recordings from Daily.co with optional filters. Supports filtering by room, time range, and cursor-based pagination. |