create_event
Create a single or recurring calendar event with start time, optional end, recurrence rule, calendar, location, and description, with accurate timezone handling.
Instructions
Create an event (single, or recurring if rrule is given).
`start`/`end` are ISO 8601 (see parameter docs for zone + default-duration
details — read those before writing). `rrule` is a raw RRULE body,
e.g. "FREQ=WEEKLY;COUNT=12". `calendar` is required in practice — there
is no default calendar. Pick deliberately; events are not validated
against calendar type.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | No | ISO 8601 datetime. Omit for the default duration: 1 hour after `start` for timed events, 1 day after `start` for all-day. Must be after `start`. | |
| rrule | No | ||
| start | Yes | ISO 8601 datetime. A bare local time is interpreted as wall time in the configured zone (`Pacific/Auckland`); an offset-qualified time is honoured and stored in that zone. Use `resolve_datetime` to confirm before writing. With no `end`, the event defaults to 1 hour after this `start` (1 day for all-day). | |
| summary | Yes | ||
| calendar | No | ||
| location | No | ||
| description | No |