zoom_list_meetings

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

List Zoom meetings for the signed-in user (upcoming, scheduled, or currently live video calls). Returns compact meeting summaries (id, topic, start time, duration, join URL, timezone). Use to browse a user’s Zoom meetings.

Parameters

NameTypeRequiredDescription
typestringnoWhich set of Zoom meetings to list: “scheduled”, “live” (currently in progress), or “upcoming” (default).
page_sizenumbernoMaximum number of meetings to return (default 30, max 100).

Example call

Arguments

{
  "type": "upcoming",
  "page_size": 30
}

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_meetings","arguments":{"type":"upcoming","page_size":30}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('zoom_list_meetings', {
  "type": "upcoming",
  "page_size": 30
});

More examples

{
  "type": "live"
}

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