Zoom Plugin Sdk logo

Zoom Plugin Sdk

Organization
zoom
zoom-plugin-sdk

Zoom Plugin SDK guidance for native macOS and Windows applications that control an installed Zoom Workplace desktop client over IPC. Use for desktop companion apps that start or join meetings, control meeting audio/video/share/UI, inspect participants, or manage supported meeting features without embedding a Zoom client. Route platform-specific implementation to the macOS or Windows child skill.

Overview

Publisherzoom
Repositoryskills
Skill namezoom-plugin-sdk
Stars
78
Forks
16
Bundled files
13
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 13 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by zoom on GitHub. Read the source before you install it.

Installation

Install the Zoom Plugin Sdk AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/zoom/skills.git /tmp/skills
mkdir -p .claude/skills
cp -r /tmp/skills/skills/plugin-sdk .claude/skills/zoom-plugin-sdk
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Zoom Plugin Sdk in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Zoom Plugin Sdk on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Zoom Plugin Sdk is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Zoom Plugin SDK

Build native desktop companion applications that control the user's installed Zoom Workplace client through inter-process communication (IPC).

Hard Routing Guardrail

  • Use Plugin SDK when a separate native macOS or Windows app must control the installed Zoom Workplace desktop client.
  • Use Meeting SDK when Zoom meeting functionality must be embedded inside the application's own process or UI.
  • Use Zoom Apps SDK when the app runs as a web application inside Zoom Workplace.
  • Use REST API for server-side meeting resources, account administration, reporting, or workflows that do not control the local client.
  • Do not describe Plugin SDK as a headless meeting bot or a replacement Zoom client. Zoom Workplace must be installed and compatible.

Platform Router

TargetChild skill
Swift, Objective-C, AppKit, Xcode, macOSmacOS
Native C++, Win32, MFC, Visual Studio, WindowsWindows

Choose one child skill before writing integration code.

Core Architecture

text
Native companion app
  -> user OAuth access token
  -> Plugin SDK runtime
  -> local IPC connection
  -> installed Zoom Workplace client
  -> meeting/webinar UI and supported controls

The application does not render or transport meeting media itself. It sends supported control requests to Zoom Workplace and observes asynchronous auth, IPC, meeting, participant, media-control, sharing, and UI events.

Common Lifecycle

  1. Create a General app in Zoom App Marketplace.
  2. Enable Plugin SDK under Features > Access.
  3. Configure an OAuth redirect URL and request user authorization with plugin_sdk:read:connection_meta plus scopes needed by any REST API calls.
  4. Install and sign the platform SDK libraries with the application.
  5. Register and retain the platform event listener.
  6. Receive the authorization code at the redirect URL and exchange it for an access token.
  7. Initialize the Plugin SDK with the OAuth access token and https://zoom.us domain.
  8. Wait for successful authentication and an IPC connected event.
  9. Start or join a meeting, then wait for the in-meeting status before using meeting toolkits.
  10. Treat immediate Boolean returns as request-submission results and completion callbacks as operation results.
  11. Uninitialize the SDK during orderly application shutdown.

Need to create/configure the General App first? Use Marketplace app management for manifest validation, plugin_sdk feature shape, PKCE/public-client settings, redirect URL rules, and credential response shapes before wiring Plugin SDK auth. Start from the Plugin SDK template.

OAuth Token Exchange

For Plugin SDK, do not invent or manually paste an access token. Use the OAuth authorization-code flow. For native desktop apps, prefer Authorization Code with PKCE:

  1. Register the redirect URL in the Marketplace app.
  2. Generate a high-entropy code_verifier and store it only for the current auth attempt.
  3. Derive code_challenge = BASE64URL(SHA256(code_verifier)).
  4. Send the user to Zoom's OAuth authorize URL with code_challenge and code_challenge_method=S256.
  5. Receive ?code=... on the redirect URL.
  6. POST the code to https://zoom.us/oauth/token.
  7. Include grant_type=authorization_code, the same redirect_uri, the authorization code, and code_verifier.
  8. Use the returned access_token when initializing Plugin SDK.

If the app registration requires a confidential client secret, perform token exchange and refresh on a trusted backend instead of shipping the secret in the desktop app. The redirect_uri in the token exchange must exactly match the redirect URL used during authorization and configured for the Marketplace app. Do not persist tokens in plaintext files; use secure OS storage or backend-managed storage.

Feature Surface

The 7.1.0 packages expose platform-equivalent toolkits for:

  • start/join, meeting status, meeting properties, leave/end, and statistics
  • participants, roles, host/co-host controls, waiting room, and permissions
  • audio/video devices and in-meeting audio/video controls
  • application, monitor, camera, file, audio, frame, and whiteboard sharing
  • recording, chat, reactions, closed captions/live transcription, Q&A, and webinars
  • annotation, Zoom Workplace view/UI actions, and settings

Feature availability still depends on client version, meeting type, account settings, role, and host policy. Call capability checks where the SDK provides them.

Read Capabilities for a grouped inventory of what Plugin SDK can get or do through the official Zoom Workplace client.

Read FAQ when comparing Plugin SDK with Meeting SDK for Windows or macOS.

Skill Chaining

NeedChain to
Create/select Marketplace app, validate manifest, or inspect credential shapesMarketplace app management
User OAuth, PKCE, token refresh, and scopeszoom-oauth
Create or manage meetings before local client controlzoom-rest-api
React to server-side lifecycle events when the desktop app is offlinezoom-webhooks
Embed a meeting instead of controlling Zoom Workplacezoom-meeting-sdk
Compare official-client control versus embedded Meeting SDKFAQ

Use Native Zoom Workplace Companion for the complete cross-platform workflow.

Version and Source Policy

  • Public docs used for this skill: macOS and Windows.
  • The public product changelog currently labels both platforms as Plugin SDK 1.0.0 (initial launch); this product release label is separate from the bundled package/build versions below.
  • Package review baseline: macOS 7.1.0.595 and Windows 7.1.0.2020.
  • Verify exact names and signatures against the headers and sample bundled with the downloaded package.
  • Prefer package headers over examples when generated docs and the selected package disagree.
  • Do not place machine-local extraction paths in implementation guidance.

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Zoom Plugin Sdk AI skill do?

Zoom Plugin SDK guidance for native macOS and Windows applications that control an installed Zoom Workplace desktop client over IPC. Use for desktop companion apps that start or join meetings, control meeting audio/video/share/UI, inspect participants, or manage supported meeting features without embedding a Zoom client. Route platform-specific implementation to the macOS or Windows child skill.

Why use Zoom Plugin Sdk on TypingMind?

Because you install it once and use it with any model. Zoom Plugin Sdk is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Zoom Plugin Sdk in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/zoom/skills/tree/main/skills/plugin-sdk. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Zoom Plugin Sdk?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Zoom Plugin Sdk?

As many as you like. As long as a model supports skills, you can use Zoom Plugin Sdk with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Zoom Plugin Sdk AI skill free?

Yes. It is published on GitHub by zoom under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇