Skip to Content

Google Calendar

Service domainCALENDAR
Google Calendar icon
Arcade Optimized

Arcade.dev LLM tools for Google Calendar

Author:Arcade
Version:3.4.0
Auth:User authorization via the Google auth provider
7tools

The Google Calendar toolkit for Arcade integrates with Google Calendar via OAuth, enabling LLMs to read, create, update, and delete calendar data on behalf of authenticated users.

Capabilities

  • Calendar discovery & user context: List all calendars accessible to the user and retrieve the authenticated user's profile, email, and Calendar access permissions.
  • Event querying: List events within a datetime range using precise exclusive bounds on both start and end times, supporting complex filtering across one or more days.
  • Event management: Create single or recurring events (via recurrence rules), update individual fields of existing events without overwriting unchanged fields, and delete events.
  • Scheduling assistance: Find available time slots when all specified participants are free within a given date range and time boundaries.

OAuth

This toolkit uses OAuth 2.0 via the Google provider. See the Arcade Google auth provider docs for setup details, required API enablement, and scope coverage.

Available tools(7)

7 of 7 tools
Operations
Behavior
Tool nameDescriptionSecrets
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.
Update an existing event in the specified calendar with the provided details. Only the provided fields will be updated; others will remain unchanged. `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.
Last updated on