calendar_create_event
Create a calendar event with title, start, and end times. Optionally add location, description, and attendees to any writable calendar.
Instructions
Create a new calendar event with title, time, and optional details. Can create events in any writable calendar.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| calendarId | No | Calendar ID (default: "primary" for your main calendar). Use calendar_list_calendars to get IDs of shared calendars. | primary |
| summary | Yes | Event title/summary | |
| start | Yes | Start time in ISO 8601 format (e.g., "2025-11-02T10:00:00Z") | |
| end | Yes | End time in ISO 8601 format (e.g., "2025-11-02T11:00:00Z") | |
| timeZone | No | IANA timezone (e.g., "America/New_York", "America/Los_Angeles", "Europe/London", "UTC"). If not specified, uses the calendar's default timezone. | |
| description | No | Event description (optional) | |
| location | No | Event location (optional) | |
| attendees | No | Array of attendee email addresses (optional) |