zoom_list_recordings

Pack: zoom · Endpoint: https://gateway.pipeworx.io/zoom/mcp

List the signed-in user’s Zoom cloud recordings of past meetings and video calls. Returns each recording’s id, topic, start time, duration, total size, recording count, and downloadable/playable files (video, audio, transcript). Supports an optional date range. Use to find and access Zoom recordings.

Parameters

NameTypeRequiredDescription
fromstringnoStart date for the recording search, in YYYY-MM-DD format.
tostringnoEnd date for the recording search, in YYYY-MM-DD format.
page_sizenumbernoMaximum number of recordings to return (default 30, max 100).

Example call

Arguments

{
  "from": "2024-01-01",
  "to": "2024-01-31",
  "page_size": 50
}

curl

curl -X POST https://gateway.pipeworx.io/zoom/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"zoom_list_recordings","arguments":{"from":"2024-01-01","to":"2024-01-31","page_size":50}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('zoom_list_recordings', {
  "from": "2024-01-01",
  "to": "2024-01-31",
  "page_size": 50
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "zoom": {
      "url": "https://gateway.pipeworx.io/zoom/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026