meeting_overlap
Find meeting slots that overlap across multiple participants' local work hours on a given date. Provide each person's timezone and work window to get shared availability.
Instructions
Find overlapping meeting slots for N participants with local work hours on a date. Uses local date-fns-tz / Intl only — no external time APIs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | YYYY-MM-DD (default: today UTC). | |
| maxSlots | No | Cap returned slots (default 50). | |
| stepMinutes | No | Slot step (default 15). | |
| participants | Yes | [{ zone, workStart, workEnd, name? }] | |
| durationMinutes | No | Meeting length (default 30). |