CuratedMCP
OpenAI Agents SDK
Free

How to Install Zoom MCP in OpenAI Agents SDK

Official Zoom integration — schedule meetings, access transcripts, and manage recordings via AI

What Zoom MCP does

The official Zoom MCP server connects AI agents to your Zoom workspace — schedule meetings, retrieve transcripts, manage recordings, and access meeting analytics through natural language. Features: - Schedule meetings with participants, agenda, and settings - List and manage upcoming meetings - Access Zoom AI Companion meeting transcripts and summaries - Download and manage cloud recordings - Get meeting attendance and participation reports - Manage webinars and registration - Access team chat history - Create and manage Zoom Apps integrations - Generate meeting links and invite participants The transcript use case is transformative: After every meeting, Zoom MCP lets Claude access the full transcript, extract action items, update your project management tool (via Linear or Jira MCP), and draft follow-up emails — fully automated post-meeting workflows. Works with Zoom Workplace Business and above.

zoom
meetings
transcripts
video
scheduling

Installation steps

  1. 1Install: pip install openai-agents
  2. 2Copy the snippet below into your agent code
  3. 3Replace placeholder env values with your real keys
  4. 4Pass mcp_servers=[mcp_server] to your Agent()

Python snippet

Python snippetpython
from agents import Agent
from agents.mcp import MCPServerStdio

mcp_server = MCPServerStdio(
    command="npx",
    args=["-y", "@zoom/mcp"],
    env={
        "ZOOM_ACCOUNT_ID": "your_account_id",
        "ZOOM_CLIENT_ID": "your_client_id",
        "ZOOM_CLIENT_SECRET": "your_secret",
    },
)

agent = Agent(
    name="My Agent",
    model="gpt-4o",
    mcp_servers=[mcp_server],
)
Full server details Open Config Editor

Install in other clients

For maintainers

If you maintain Zoom MCP, add this badge to your README to show it's verified on CuratedMCP:

CuratedMCP Verified
[![CuratedMCP Verified](https://curatedmcp.com/api/badge/zoom-mcp)](https://curatedmcp.com/marketplace/zoom-mcp)