Enable an Agent to work with Google Calendar to view and schedule meetings.

Prerequisites

Install dependencies

pip install tzlocal

Setup Google Project and OAuth

Reference: https://developers.google.com/calendar/api/quickstart/python

  1. Enable Google Calender API

  2. Go To API & Service -> OAuth Consent Screen

  3. Select User Type

    • If you are a Google Workspace user, select Internal.
    • Otherwise, select External.
  4. Fill in the app details (App name, logo, support email, etc).

  5. Select Scope

    • Click on Add or Remove Scope.
    • Search for Google Calender API (Make sure you’ve enabled Google calender API otherwise scopes wont be visible).
    • Select scopes accordingly
      • From the dropdown check on /auth/calendar scope
    • Save and continue.
  6. Adding Test User

    • Click Add Users and enter the email addresses of the users you want to allow during testing.
    • NOTE : Only these users can access the app’s OAuth functionality when the app is in “Testing” mode. Any other users will receive access denied errors.
    • To make the app available to all users, you’ll need to move the app’s status to “In Production”. Before doing so, ensure the app is fully verified by Google if it uses sensitive or restricted scopes.
    • Click on Go back to Dashboard.
  7. Generate OAuth 2.0 Client ID

    • Go to Credentials.
    • Click on Create Credentials -> OAuth Client ID
    • Select Application Type as Desktop app.
    • Download JSON.
  8. Using Google Calender Tool

    • Pass the path of downloaded credentials as credentials_path to Google Calender tool.
    • Optional: Set the token_path parameter to specify where the tool should create the token.json file.
    • The token.json file is used to store the user’s access and refresh tokens and is automatically created during the authorization flow if it doesn’t already exist.
    • If token_path is not explicitly provided, the file will be created in the default location which is your current working directory.
    • If you choose to specify token_path, please ensure that the directory you provide has write access, as the application needs to create or update this file during the authentication process.

Example

The following agent will use GoogleCalendarTools to find today’s events.

cookbook/tools/googlecalendar_tools.py
from phi.agent import Agent
from phi.tools.googlecalendar import GoogleCalendarTools
import datetime
import os
from tzlocal import get_localzone_name

agent = Agent(
    tools=[GoogleCalendarTools(credentials_path="<PATH_TO_YOUR_CREDENTIALS_FILE>")],
    show_tool_calls=True,
    instructions=[
        f"""
        You are scheduling assistant . Today is {datetime.datetime.now()} and the users timezone is {get_localzone_name()}.
        You should help users to perform these actions in their Google calendar:
            - get their scheduled events from a certain date and time
            - create events based on provided details
        """
    ],
    add_datetime_to_instructions=True,
)

agent.print_response("Give me the list of todays events", markdown=True)


Toolkit Params

ParameterTypeDefaultDescription
credentials_pathstrNonePath of the file credentials.json file which contains OAuth 2.0 Client ID.
token_pathstrNonePath of the file token.json which stores the user’s access and refresh tokens.

Toolkit Functions

FunctionDescription
list_eventsList events from the user’s primary calendar.
create_eventCreate a new event in the user’s primary calendar.

Information