Zoom API MCP Server

list_recordings

Retrieve and manage Zoom meeting recordings by specifying user ID, date range, and pagination. Use this tool to organize and access recorded sessions efficiently.

Input Schema

NameRequiredDescriptionDefault
fromNoStart date in 'yyyy-MM-dd' format
next_page_tokenNoNext page token
page_sizeNoNumber of records returned
toNoEnd date in 'yyyy-MM-dd' format
user_idYesThe user ID or email address

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "from": { "description": "Start date in 'yyyy-MM-dd' format", "type": "string" }, "next_page_token": { "description": "Next page token", "type": "string" }, "page_size": { "description": "Number of records returned", "maximum": 300, "minimum": 1, "type": "number" }, "to": { "description": "End date in 'yyyy-MM-dd' format", "type": "string" }, "user_id": { "description": "The user ID or email address", "type": "string" } }, "required": [ "user_id" ], "type": "object" }
ID: h6x0sr1f0c