Google Calendar

by GongRzhe
Verified

create_event

Schedule events in Google Calendar by specifying title, start and end times, time zones, location, and description. Simplifies event creation through structured inputs.

Instructions

Creates a new event in Google Calendar

Input Schema

NameRequiredDescriptionDefault
descriptionNoEvent description
endYes
locationNoEvent location
startYes
summaryYesEvent title

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "description": { "description": "Event description", "type": "string" }, "end": { "additionalProperties": false, "properties": { "dateTime": { "description": "End time (ISO format)", "type": "string" }, "timeZone": { "description": "Time zone", "type": "string" } }, "required": [ "dateTime" ], "type": "object" }, "location": { "description": "Event location", "type": "string" }, "start": { "additionalProperties": false, "properties": { "dateTime": { "description": "Start time (ISO format)", "type": "string" }, "timeZone": { "description": "Time zone", "type": "string" } }, "required": [ "dateTime" ], "type": "object" }, "summary": { "description": "Event title", "type": "string" } }, "required": [ "summary", "start", "end" ], "type": "object" }

Other Tools from Google Calendar

Related Tools

ID: ahu6mndw4p