IntegrateIntegrate
Integrations

Zoom Integration

Manage Zoom user profile and meetings

The Zoom integration provides access to manage Zoom user profile and meetings through the Integrate MCP server.

Installation

The Zoom integration is included with the SDK:

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

Setup

1. Create a Zoom OAuth App

  1. Create an OAuth application for Zoom
  2. Configure your redirect URI
  3. Note your Client ID and Client Secret

2. Configure the Integration on Your Server

Add the Zoom integration to your server configuration. The integration automatically reads ZOOM_CLIENT_ID and ZOOM_CLIENT_SECRET from your environment variables:

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

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

You can override the environment variables by passing explicit values:

zoomIntegration({
  clientId: process.env.CUSTOM_ZOOM_ID,
  clientSecret: process.env.CUSTOM_ZOOM_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("zoom");
const result = await client.zoom.getUser({});

console.log(result);

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

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

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

Configuration Options

Prop

Type

Tools

zoom_get_user

Get user

Prop

Type

zoom_list_meetings

List meetings

Prop

Type

zoom_create_meeting

Create meeting

Prop

Type

zoom_get_meeting

Get meeting

Prop

Type

zoom_update_meeting

Update meeting

Prop

Type

zoom_delete_meeting

Delete meeting

Prop

Type

Notes

  • Category: Communication
  • Authentication mode: OAuth

On this page