Back to Tools

check_availability

read:bookings

Check whether a specific time slot is available.

Input Parameters

Parameters

PropertyTypeDescription
start_timerequiredstringSlot start (ISO 8601)
end_timerequiredstringSlot end (ISO 8601)
team_member_idstringTeam member UUID to check
exclude_session_idstringSession ID to ignore

Response

Response Schema

PropertyTypeDescription
availablerequiredbooleanAvailability status

Example

Requestjson
{
  "type": "tool",
  "name": "check_availability",
  "params": {
    "start_time": "2026-01-15T18:00:00Z",
    "end_time": "2026-01-15T19:00:00Z"
  }
}
Responsejson
{
  "success": true,
  "data": {
    "available": true
  }
}

cURL Example

curl -X POST https://app.bizily.io/api/mcp \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{\n  "type": "tool",\n  "name": "check_availability",\n  "params": {\n    "start_time": "2026-01-15T18:00:00Z",\n    "end_time": "2026-01-15T19:00:00Z"\n  }\n}'