skills$openclaw/zoom-manager
vnagin9.0k

by vnagin

zoom-manager – OpenClaw Skill

zoom-manager is an OpenClaw Skills integration for coding workflows. Manage Zoom meetings via OAuth API. Create, list, delete, and update events.

9.0k stars2.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namezoom-manager
descriptionManage Zoom meetings via OAuth API. Create, list, delete, and update events. OpenClaw Skills integration.
ownervnagin
repositoryvnagin/zoom-manager-clawd
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @vnagin/zoom-manager-clawd
last updatedFeb 7, 2026

Maintainer

vnagin

vnagin

Maintains zoom-manager in the OpenClaw Skills directory.

View GitHub profile
File Explorer
12 files
.
scripts
create_meeting.js
2.6 KB
create_meeting.py
2.1 KB
delete_meeting.js
2.3 KB
delete_meeting.py
1.8 KB
get_meeting_info.js
1.9 KB
get_meeting_info.py
1.6 KB
list_meetings.js
2.1 KB
list_meetings.py
1.8 KB
zoom-cli.js
7.2 KB
_meta.json
282 B
SKILL.md
2.3 KB
SKILL.md

name: zoom-manager description: Manage Zoom meetings via OAuth API. Create, list, delete, and update events. metadata: { "clawdbot": { "emoji": "📹", "requires": {"bins": ["node"]}, "secrets": ["ZOOM_CLIENT_ID", "ZOOM_CLIENT_SECRET", "ZOOM_ACCOUNT_ID"] } }

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

  1. Create a Server-to-Server OAuth app in the Zoom App Marketplace.
  2. Scopes Required: In the Zoom App Marketplace (Scopes tab), add the following:
    • 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
  3. Get your Client ID, Client Secret, and Account ID from the "App Credentials" tab.
  4. Set them as environment variables in your Clawdbot config:
    • 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>
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install zoom-manager?

Run openclaw add @vnagin/zoom-manager-clawd in your terminal. This installs zoom-manager into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/vnagin/zoom-manager-clawd. Review commits and README documentation before installing.