google_calendar_get_events
Retrieve upcoming Google Calendar events by specifying a limit, calendar ID, time range, search term, or inclusion of deleted events.
Instructions
Retrieve upcoming events from Google Calendar
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendarId | No | Optional: ID of calendar to use (defaults to primary if not specified) | |
limit | No | Maximum number of events to return | |
q | No | Free text search term for events | |
showDeleted | No | Whether to include deleted events | |
timeMax | No | End date/time in ISO format | |
timeMin | No | Start date/time in ISO format (defaults to now) |
Input Schema (JSON Schema)
{
"properties": {
"calendarId": {
"description": "Optional: ID of calendar to use (defaults to primary if not specified)",
"type": "string"
},
"limit": {
"description": "Maximum number of events to return",
"type": "number"
},
"q": {
"description": "Free text search term for events",
"type": "string"
},
"showDeleted": {
"description": "Whether to include deleted events",
"type": "boolean"
},
"timeMax": {
"description": "End date/time in ISO format",
"type": "string"
},
"timeMin": {
"description": "Start date/time in ISO format (defaults to now)",
"type": "string"
}
},
"type": "object"
}