Schedule a new calendar event
calendar:create-event
{ "type": "object", "properties": { "calendarId": { "type": "string", "description": "Calendar ID" }, "summary": { "type": "string", "description": "Event title" }, "description": { "type": "string", "description": "Event description" }, "start": { "type": "object", "description": "Start time: {dateTime: 'RFC3339', timeZone: 'TZ'}" }, "end": { "type": "object", "description": "End time: {dateTime: 'RFC3339', timeZone: 'TZ'}" }, "attendees": { "type": "array", "description": "Array of {email: string} objects" }, "location": { "type": "string", "description": "Event location" }, "end_user_id": { "type": "string", "description": "End-user ID for per-user OAuth token resolution" } }, "required": [ "calendarId", "summary", "start", "end" ], "description": "Input schema for the calendar:create-event tool." }