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

NameRequiredDescriptionDefault
calendarIdsNoOptional: Calendar IDs to check (defaults to primary if not specified)
durationYesMinimum slot duration in minutes
endDateYesEnd of search period (ISO format)
startDateYesStart 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" }
ID: opwf6bop3j