Skip to main content
Glama

list_webhooks

Retrieve and manage webhooks configured for Zoom API endpoints, enabling monitoring and automation of events such as meeting updates, user activities, and webinar changes.

Input Schema

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": {}, "type": "object" }

Implementation Reference

  • The handler function that executes the list_webhooks tool logic by calling the Zoom API to GET /webhooks and handling the response or error.
    handler: async () => { try { const response = await zoomApi.get('/webhooks'); return handleApiResponse(response); } catch (error) { return handleApiError(error); } }
  • The schema for the list_webhooks tool, which is empty indicating no input parameters are required.
    schema: {},
  • src/server.js:55-55 (registration)
    Registers the webhooksTools array (containing the list_webhooks tool) with the MCP server.
    registerTools(webhooksTools);

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattcoatsworth/zoom-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server