IntegrateIntegrate
Integrations

Google Meet Integration

Create and manage Google Meet links via Calendar conference data

The Google Meet integration provides access to create and manage Google Meet links via Calendar conference data through the Integrate MCP server.

Installation

The Google Meet integration is included with the SDK:

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

Setup

1. Create a Google Meet 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 Meet integration to your server configuration. The integration automatically reads GOOGLE_MEET_CLIENT_ID and GOOGLE_MEET_CLIENT_SECRET from your environment variables:

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

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

You can override the environment variables by passing explicit values:

googleMeetIntegration({
  clientId: process.env.CUSTOM_GOOGLE_MEET_ID,
  clientSecret: process.env.CUSTOM_GOOGLE_MEET_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_meet");
const result = await client.google_meet.addMeetToEvent({});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Tools

google_meet_add_meet_to_event

Meet add meet to event

Prop

Type

google_meet_create_meeting

Meet create meeting

Prop

Type

google_meet_delete_meeting

Meet delete meeting

Prop

Type

google_meet_get_meeting

Meet get meeting

Prop

Type

google_meet_list_meetings

Meet list meetings

Prop

Type

google_meet_update_meeting

Meet update meeting

Prop

Type

Notes

  • Category: Communication
  • Authentication mode: OAuth

On this page