Manage Zoom meetings and recordings via the v2 API: list and create meetings, get details, and fetch cloud recordings.
115+ deploysclaude mcp add zoom --url https://datafaucet.dev/api/mcp/t/zoom
Run this command in your terminal · most users connect in under 60s
GET endpoints
zoom_get_current_user
Get the authenticated user's profile. Returns id, email, first_name, last_name, and account type.
https://api.zoom.us/v2/users/me
zoom_list_meetings
List the user's upcoming meetings. Returns meetings[] with id, topic, start_time, duration, and join_url.
https://api.zoom.us/v2/users/me/meetings?type=upcoming&page_size=30
zoom_get_meeting
Get details for a meeting by id. Returns topic, agenda, start_time, duration, timezone, join_url, and settings.
https://api.zoom.us/v2/meetings/{meeting_id}
zoom_list_recordings
List the user's cloud recordings. Returns meetings[] with id, topic, start_time, and recording_files (download/play URLs, file_type, recording_type).
https://api.zoom.us/v2/users/me/recordings?page_size=30
POST endpoints
zoom_create_meeting
Schedule a meeting. Requires topic, start_time (ISO 8601, e.g. 2026-01-15T10:00:00Z), and duration (minutes). Returns the created meeting's id and join_url.
https://api.zoom.us/v2/users/me/meetings
DELETE endpoints
zoom_delete_meeting
Delete a scheduled meeting by id. Returns 204 on success.
https://api.zoom.us/v2/meetings/{meeting_id}
Run this in your terminal:
claude mcp add zoom https://datafaucet.dev/api/mcp/t/zoom
Connect Zoom to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{duration}Your value{meeting_id}Resource identifier{start_time}Your value{topic}Your value{zoom_token}API settings pagePreview:
GET https://api.zoom.us/v2/users/me Authorization: Bearer {zoom_token}
claude mcp add zoom --url https://datafaucet.dev/api/mcp/t/zoomWhat your AI agent sees
I have access to 6 tools from Zoom: zoom_get_current_user, zoom_list_meetings, zoom_get_meeting, and 3 more.
“Get the authenticated user's profile. Returns id, email, first_name, last_name, and account type.”
Calling zoom_get_current_user... Done. Here are the results.
Try these prompts
“List my upcoming Zoom meetings for this week”
Copy“Schedule a 30-minute meeting 'Design review' tomorrow at 2pm”
Copy“Find the cloud recording of last Monday's standup and give me the link”
CopyClick any prompt to copy, then paste into your AI client.