google_calendar_find_free_time
Identify open time slots in Google Calendar between events for a specified period and duration. Input start and end dates, desired duration, and optional calendar IDs to find available time.
Instructions
Find available time slots between events
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarIds | No | Optional: Calendar IDs to check (defaults to primary if not specified) | |
duration | Yes | Minimum slot duration in minutes | |
endDate | Yes | End of search period (ISO format) | |
startDate | Yes | Start of search period (ISO format) |
Input Schema (JSON Schema)
{
"properties": {
"calendarIds": {
"description": "Optional: Calendar IDs to check (defaults to primary if not specified)",
"items": {
"type": "string"
},
"type": "array"
},
"duration": {
"description": "Minimum slot duration in minutes",
"type": "number"
},
"endDate": {
"description": "End of search period (ISO format)",
"type": "string"
},
"startDate": {
"description": "Start of search period (ISO format)",
"type": "string"
}
},
"required": [
"startDate",
"endDate",
"duration"
],
"type": "object"
}