IntegrateIntegrate
Integrations

Google Calendar Integration

Manage Google Calendar events and schedules

The Google Calendar integration provides access to manage Google Calendar events and schedules through the Integrate MCP server.

Installation

The Google Calendar integration is included with the SDK:

import { googleCalendarIntegration } from "integrate-sdk/server";

Setup

1. Create a Google Calendar OAuth App

  1. Go to Google Cloud Console
  2. Create a new OAuth application
  3. Configure your redirect URI
  4. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Google Calendar integration to your server configuration. The integration automatically reads GOOGLE_CALENDAR_CLIENT_ID and GOOGLE_CALENDAR_CLIENT_SECRET from your environment variables:

import { createMCPServer, googleCalendarIntegration } from "integrate-sdk/server";

export const { client: serverClient } = createMCPServer({
  apiKey: process.env.INTEGRATE_API_KEY,
  integrations: [
    googleCalendarIntegration({
    }),
  ],
});

You can override the environment variables by passing explicit values:

googleCalendarIntegration({
  clientId: process.env.CUSTOM_GOOGLE_CALENDAR_ID,
  clientSecret: process.env.CUSTOM_GOOGLE_CALENDAR_SECRET,
});

3. Client-Side Usage

The default client automatically includes all integrations. You can use it directly:

import { client } from "integrate-sdk";

await client.authorize("google_calendar");
const result = await client.google_calendar.listCalendars({});

console.log(result);

If you're using a custom client, add the integration to the integrations array:

import { createMCPClient, googleCalendarIntegration } from "integrate-sdk";

const customClient = createMCPClient({
  integrations: [googleCalendarIntegration()],
});

Configuration Options

Prop

Type

Tools

google_calendar_create_calendar

Create a new calendar

Prop

Type

google_calendar_create_event

Create a new event

Prop

Type

google_calendar_delete_calendar

Delete a calendar

Prop

Type

google_calendar_delete_event

Delete an event

Prop

Type

google_calendar_freebusy

Calendar freebusy

Prop

Type

google_calendar_get_calendar

Get a specific calendar

Prop

Type

google_calendar_get_event

Get a specific event

Prop

Type

google_calendar_list_attendees

List attendees for an event

Prop

Type

google_calendar_list_calendars

List calendars

Prop

Type

google_calendar_list_events

List events in a calendar

Prop

Type

google_calendar_quick_add

Quickly add an event using natural language

Prop

Type

google_calendar_update_event

Update an existing event

Prop

Type

Notes

  • Category: Productivity
  • Authentication mode: OAuth

On this page