setup-zoom-webhooks Skill
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection. Published by anthropics in knowledge-work-plugins.
Decision snapshot
Is this a fit?
Developers using knowledge-work-plugins, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
OAuth authentication, Credentials required
Copy skill directory
22 days ago · Apache-2.0 license
Access note: OAuth.
What is setup-zoom-webhooks Skill?
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection. Published by anthropics in knowledge-work-plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Developers using knowledge-work-plugins
Declared skill metadata
- Source file: partner-built/zoom-plugin/skills/webhooks/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- Install or run with Copy skill directory
- OAuth
Requirements and access
Security and permissions
Review permissions before connecting any MCP server to an agent. Pay special attention to whether it can read local files, write data, call external services, or perform destructive actions.
When to use setup-zoom-webhooks Skill
- Use it for developers using knowledge-work-plugins.
Built with
Editorial notes
Source
- Creator: anthropics
- Repository: anthropics/knowledge-work-plugins
- Skill file: partner-built/zoom-plugin/skills/webhooks/SKILL.md
What it does
Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection.
Skill instructions
/setup-zoom-webhooks Background reference for Zoom event delivery over HTTP. Prefer workflow skills first, then use this file for verification, subscription, and delivery details. Prerequisites - Zoom app with Event Subscriptions enabled - HTTPS endpoint to receive webhooks - Webhook secret token for verification Need help with authentication? See the zoom-oauth skill for OAuth setup. Quick Start javascript // Express.js webhook handler const crypto = require('crypto'); // Capture raw body for signature verification (avoid re-serializing JSON). app.use(require('express').json({ verify: (req, res, buf) = { req.rawBody = buf; } })); app.post('/webhook', (req, res) = { // Verify webhook signature const signature = req.headers['x-zm-signature']; const timestamp = req.headers['x-zm-request-timestamp']; const body = req.rawBody ? req.rawBody.toString('utf8') : JSON.stringify(req.body); const payload = v0:${timestamp}:${body}; const hash = crypto.createHmac('sha256', WEBHOOKSECRET) .update(pa
Verified compatibility and discovery
Frequently asked questions
What is setup-zoom-webhooks?
setup-zoom-webhooks is a open-source AI agent skill with Copy skill directory. Reference skill for Zoom webhooks. Use after routing to an event-driven workflow when implementing subscriptions, signature verification, delivery handling, retries, or event-type selection.
Who is setup-zoom-webhooks best for?
setup-zoom-webhooks is best for reusing agent instructions, scripts, and references.
How do I install setup-zoom-webhooks?
Install or run setup-zoom-webhooks using Copy skill directory. Check setup-zoom-webhooks for the latest setup command.
Is setup-zoom-webhooks actively maintained?
setup-zoom-webhooks may need a closer maintenance check before production use.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.