Meeting Overlap
meeting_overlapFind the shared meeting window across time zones inside working hours. FREE.
Give one UTC offset per participant and an optional working-hours window. Typical input {"offsets_utc": [-8, 1, 5.5]} returns {"overlap_utc": ["HH:MM", "HH:MM"], "overlap_minutes": N, "local_windows": [...]}; when no shared window exists it returns {"overlap": null, "verdict": "..."}.
Use when people in different zones need one shared slot. Not for converting a single known time between zones, and not for expanding a recurring series (recurrence_expand). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "times must be HH:MM"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| work_end | No | Working day end, 24h HH:MM; must be later than work_start. Default "17:00". | 17:00 |
| work_start | No | Working day start, 24h HH:MM local in every zone. Default "09:00". | 09:00 |
| offsets_utc | Yes | One UTC offset per participant, each between -14 and +14; fractional offsets allowed, e.g. [-8, 1, 5.5]. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||