Tool details
| Field | Value |
|---|---|
| Name | calendar__create_event |
| Group | Integrations |
Playground
Input schema
Input schema
{
"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"
}
},
"required": [
"calendarId",
"summary",
"start",
"end"
],
"description": "Input schema for the calendar__create_event tool."
}