Clawdbot ToolsDocumentedScanned
zoom-manager-clawd
Manage Zoom meetings via OAuth API.
Share:
Installation
npx clawhub@latest install zoom-manager-clawdView the full skill documentation and source below.
Documentation
Zoom Manager
Manage your Zoom meetings directly from Clawdbot with this powerful, headless integration. This skill allows you to automate your meeting workflows without ever opening the Zoom dashboard.
Key Features:
- Full Meeting Lifecycle: Create, list, update, and delete meetings using simple natural language or CLI commands.
- Enterprise-Ready: Built for Server-to-Server OAuth, ensuring secure and robust authentication.
- Automated Recording: Default support for cloud recording to make sure your sessions are always captured.
- Developer Friendly: Clean Node.js implementation that can be easily extended for custom automation flows (e.g., auto-scheduling after a CRM update).
- Headless & Fast: No browser required; interacts directly with the Zoom REST API v2.
Setup
- Meetings:
-
meeting:read:admin / meeting:read:master (View meetings)-
meeting:write:admin / meeting:write:master (Create and update meetings)-
meeting:delete:admin / meeting:delete:master (Delete meetings)- Users:
user:read:admin- Recordings:
recording:read:admin-
ZOOM_CLIENT_ID-
ZOOM_CLIENT_SECRET-
ZOOM_ACCOUNT_ID
Commands
List Meetings
node {baseDir}/scripts/zoom-cli.js list
Create a Meeting
node {baseDir}/scripts/zoom-cli.js create "Meeting Topic" "2026-01-30T10:00:00Z" 60
Update a Meeting
node {baseDir}/scripts/zoom-cli.js update <meeting_id> <new_start_time> <duration> "New Topic"
Get Meeting Info
node {baseDir}/scripts/zoom-cli.js info <meeting_id>
Delete a Meeting
node {baseDir}/scripts/zoom-cli.js delete <meeting_id>