Google Calendar
Service domainCALENDAR
Arcade Optimized
Arcade.dev LLM tools for Google Calendar
8tools
Google Calendar Toolkit
Arcade's Google Calendar toolkit gives LLMs authenticated access to Google Calendar, enabling agents to read, create, and manage calendar data on behalf of users.
Capabilities
- Calendar discovery & user context: List all accessible calendars and retrieve the authenticated user's profile, email, permissions, and environment details.
- Event querying: Fetch events within precise datetime ranges using independent start/end boundary filters (exclusive bounds) across any accessible calendar.
- Event creation & recurrence: Create one-off or repeating events (meetings, syncs, meetups) with full recurrence support via the
recurrenceparameter. - Event modification & deletion: Update any subset of event fields independently (start and end times are decoupled), or delete events entirely; edits respect organizer permissions and guest-edit settings.
- RSVP management: Accept, decline, or tentatively accept meeting invitations by setting the authenticated user's response status.
- Availability analysis: Find overlapping free time slots for multiple attendees within a specified date range and time boundaries.
OAuth
This toolkit uses OAuth 2.0 via Google. See the Arcade Google auth provider docs for setup, required scopes, and configuration details.
Available tools(8)
8 of 8 tools
Operations
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Create a new event/meeting/sync/meetup in the specified calendar.
Pass `recurrence` to create a repeating event. | |||
Delete an event from Google Calendar. | |||
Provides time slots when everyone is free within a given date range and time boundaries. | |||
List all calendars accessible by the user. | |||
List events from the specified calendar within the given datetime range.
min_end_datetime serves as the lower bound (exclusive) for an event's end time.
max_start_datetime serves as the upper bound (exclusive) for an event's start time.
For example:
If min_end_datetime is set to 2024-09-15T09:00:00 and max_start_datetime
is set to 2024-09-16T17:00:00, the function will return events that:
1. End after 09:00 on September 15, 2024 (exclusive)
2. Start before 17:00 on September 16, 2024 (exclusive)
This means an event starting at 08:00 on September 15 and
ending at 10:00 on September 15 would be included, but an
event starting at 17:00 on September 16 would not be included. | |||
Accept, decline, or tentatively accept (RSVP to) a meeting invitation on the
authenticated user's behalf.
Sets the user's responseStatus for an event they were invited to. | |||
Update an existing event in the specified calendar with the provided details.
Only the provided fields will be updated; others will remain unchanged.
An event's details can only be changed by the event's organizer, or by a guest
when the organizer has enabled guest editing for that event.
`updated_start_datetime` and `updated_end_datetime` are
independent and can be provided separately. | |||
Get comprehensive user profile and Google Calendar environment information.
This tool provides detailed information about the authenticated user including
their name, email, profile picture, Google Calendar access permissions, and other
important profile details from Google services. |
Get Building
Last updated on