Back to Tools
check_availability
read:bookingsCheck whether a specific time slot is available.
Input Parameters
Parameters
| Property | Type | Description |
|---|---|---|
start_timerequired | string | Slot start (ISO 8601) |
end_timerequired | string | Slot end (ISO 8601) |
team_member_id | string | Team member UUID to check |
exclude_session_id | string | Session ID to ignore |
Response
Response Schema
| Property | Type | Description |
|---|---|---|
availablerequired | boolean | Availability 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}'