---
asIndexPage: true
---
# Zoom
import ToolInfo from "@/app/_components/tool-info";
import Badges from "@/app/_components/badges";
import TabbedCodeBlock from "@/app/_components/tabbed-code-block";
import TableOfContents from "@/app/_components/table-of-contents";
import ToolFooter from "@/app/_components/tool-footer";
import { Callout } from "nextra/components";
The Arcade Zoom MCP Server provides tools for interacting with Zoom. With these tools, you can build agents and AI applications that can:
- List upcoming meetings
- Retrieve meeting invitation details
## Available Tools
These tools are currently available in the Arcade Zoom MCP Sever.
If you need to perform an action that's not listed here, you can [get in touch
with us](mailto:contact@arcade.dev) to request a new tool, or [create your own
tools](/guides/create-tools/tool-basics/build-mcp-server) with the [Zoom auth
provider](/references/auth-providers/zoom#using-zoom-auth-in-custom-tools).
## Zoom.ListUpcomingMeetings
List a Zoom user's upcoming meetings within the next 24 hours.
**Parameters**
- **`user_id`** _(string, optional)_ The user's user ID or email address. Defaults to 'me' for the current user.
---
## Zoom.GetMeetingInvitation
Retrieve the invitation note for a specific Zoom meeting.
**Parameters**
- **`meeting_id`** _(string, required)_ The meeting's numeric ID (as a string).
---
## Auth
The Arcade Zoom MCP Sever uses the [Zoom auth provider](/references/auth-providers/zoom) to connect to users' Zoom accounts.
With the Arcade Cloud Platform, there's nothing to configure. Your users will see `Arcade ` as the name of the application that's requesting permission.
With a self-hosted installation of Arcade, you need to [configure the Zoom auth provider](/references/auth-providers/zoom#configuring-zoom-auth) with your own Zoom app credentials.