{
  "info": {
    "name": "Daily — mcp.ai",
    "description": "REST API for the Daily MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/daily",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "daily_batch_create_rooms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/batch/create/rooms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "batch",
            "create",
            "rooms"
          ]
        },
        "description": "Create 1 to 1,000 Daily rooms in one atomic request. If any room fails, Daily creates none of the rooms. Paid media, telephony, storage, and callback settings are intentionally not exposed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rooms\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_create_meeting_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/meeting/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "meeting",
            "token"
          ]
        },
        "description": "Issue a time-bounded meeting token for one Daily room and participant. The returned token grants room access and must be handled as a secret.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\",\n  \"is_owner\": false,\n  \"room_name\": \"\",\n  \"user_name\": \"\",\n  \"expires_at\": 0,\n  \"not_before\": 0,\n  \"start_audio_off\": false,\n  \"start_video_off\": false,\n  \"eject_at_token_exp\": false,\n  \"enable_screenshare\": false,\n  \"eject_after_elapsed\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_create_room",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/room",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "room"
          ]
        },
        "description": "Create a named Daily room with privacy and optional safe meeting defaults. Paid media, telephony, storage, and callback settings are intentionally not exposed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"privacy\": \"\",\n  \"properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_delete_room",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/room",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "room"
          ]
        },
        "description": "Permanently delete one Daily room by name. Use only after confirming the target; active participants may be disconnected.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"room_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_get_domain_config",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/domain/config",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "domain",
            "config"
          ]
        },
        "description": "Return the connected Daily domain identity and stable account capability signals. Use this before attempting features that may be disabled or entitlement-gated.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_get_room",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/room",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "room"
          ]
        },
        "description": "Return a Daily room's current privacy and configuration by room name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"room_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_get_room_presence",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/room/presence",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "room",
            "presence"
          ]
        },
        "description": "Return the current participants visible in one Daily room, optionally filtered by user ID or display name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"user_id\": \"\",\n  \"room_name\": \"\",\n  \"user_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_list_meetings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/meetings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "meetings"
          ]
        },
        "description": "Return one page of Daily meeting-session analytics, filtered by room, time range, or session state. Pass next_cursor unchanged to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"ongoing\": false,\n  \"room_name\": \"\",\n  \"next_cursor\": \"\",\n  \"timeframe_end\": 0,\n  \"timeframe_start\": 0,\n  \"exclude_participants\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_list_rooms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/rooms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "rooms"
          ]
        },
        "description": "Return one reverse-chronological page of Daily rooms. Pass next_cursor unchanged to continue with the same filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_update_room",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/room",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "room"
          ]
        },
        "description": "Update a Daily room's privacy or safe meeting defaults. Only supplied fields change; paid media, telephony, storage, and callbacks are not exposed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"privacy\": \"\",\n  \"room_name\": \"\",\n  \"properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "daily_validate_meeting_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/meeting/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "meeting",
            "token"
          ]
        },
        "description": "Validate a Daily meeting token and return its effective room and participant settings without joining a call.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"meeting_token\": \"\",\n  \"ignore_not_before\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}