find_meeting_times
Find available meeting slots for a list of attendees within a specified time window, returning ranked suggestions with confidence scores.
Instructions
Suggest meeting times that work for the given attendees.
Args: attendees: List of attendee email addresses. duration_minutes: Meeting duration in whole minutes (e.g. 30). start_window: ISO 8601 start of the candidate window. end_window: ISO 8601 end of the candidate window. max_candidates: Cap on returned suggestions (default 20).
Returns: { "suggestions": [ {"start": {date_time, time_zone}, "end": {...}, "confidence": float, "order_hint": int}, ... ], "empty_reason": str | None, }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mailbox | No | ||
| attendees | Yes | ||
| end_window | Yes | ||
| include_raw | No | ||
| start_window | Yes | ||
| max_candidates | No | ||
| duration_minutes | Yes |