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
- Create an OAuth application for Zoom
- Configure your redirect URI
- 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
export interface ZoomIntegrationConfig {
clientId?: string;
Tools
zoom_get_user
Get user
export interface ZoomGetUserParams { user_id?: string }
zoom_list_meetings
List meetings
export interface ZoomListMeetingsParams {
user_id?: string;
zoom_create_meeting
Create meeting
export interface ZoomCreateMeetingParams {
topic: string;
zoom_get_meeting
Get meeting
export interface ZoomGetMeetingParams { meeting_id: string }
zoom_update_meeting
Update meeting
export interface ZoomUpdateMeetingParams {
meeting_id: string;
zoom_delete_meeting
Delete meeting
export interface ZoomDeleteMeetingParams {
meeting_id: string;
Notes
- Category: Communication
- Authentication mode: OAuth