MCP.so
Sign In

MCP Server for Zoom (No Auth) - Python & Node.js

@peakmojo

About MCP Server for Zoom (No Auth) - Python & Node.js

A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.

Basic information

Category

Communication

License

Apache-2.0

Runtime

python

Transports

stdio

Publisher

peakmojo

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-server-zoom-noauth": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "mcp-server-zoom-noauth",
        "."
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is MCP Server for Zoom (No Auth) - Python & Node.js?

It is a Model Context Protocol (MCP) server that provides access to Zoom API functionality without requiring direct authentication from the end user. The server handles OAuth flows and offers tools for interacting with Zoom recordings and transcripts. It is intended for developers who want to integrate Zoom recording data into AI assistants, automation workflows, or other MCP‑compatible clients.

How to use MCP Server for Zoom (No Auth) - Python & Node.js?

Install the dependencies (pip install -r requirements.txt) and start the server with python -m src.mcp_server_zoom_noauth.server. No local authentication flow is needed; OAuth credentials (access token, refresh token, client ID, client secret) are passed as arguments to each tool call. The server can also be run as a Docker container (images available for linux/amd64 and linux/arm64).

Key features of MCP Server for Zoom (No Auth) - Python & Node.js?

  • OAuth credential management through tool arguments (no local auth flow)
  • List user's cloud recordings with pagination
  • Get detailed information about specific meeting recordings
  • Access meeting transcripts
  • No credentials stored on the server; fully headless operation

Use cases of MCP Server for Zoom (No Auth) - Python & Node.js?

  • Retrieve Zoom meeting recordings and transcripts for analysis or summarization
  • Integrate Zoom data into AI assistants (e.g., Claude) via the MCP protocol
  • Automate extraction of recording metadata without storing user credentials
  • Build workflows that require on‑demand access to Zoom recording details

FAQ from MCP Server for Zoom (No Auth) - Python & Node.js?

What does "no auth" mean in this server?

The server itself does not require or store any user credentials. All OAuth tokens and secrets are supplied as arguments to each tool call, so no local authentication flow is needed.

What tools does the server provide?

The server offers four tools: zoom_refresh_token, zoom_list_recordings, zoom_get_recording_details,

Comments

More Communication MCP servers