---
title: "Zoom Integration"
description: "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:

```typescript
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:

```typescript
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:

```typescript
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:

```typescript
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:

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

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

## Configuration Options

<AutoTypeTable
  path="../src/integrations/zoom.ts"
  name="ZoomIntegrationConfig"
/>


## Tools

### `zoom_get_user`

Get user

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomGetUserParams"
/>

### `zoom_list_meetings`

List meetings

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomListMeetingsParams"
/>

### `zoom_create_meeting`

Create meeting

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomCreateMeetingParams"
/>

### `zoom_get_meeting`

Get meeting

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomGetMeetingParams"
/>

### `zoom_update_meeting`

Update meeting

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomUpdateMeetingParams"
/>

### `zoom_delete_meeting`

Delete meeting

<AutoTypeTable
  path="generated/tool-params/zoom.ts"
  name="ZoomDeleteMeetingParams"
/>

## Notes

- Category: Communication
- Authentication mode: OAuth
