list_webhooks
View all registered webhook endpoints for your API key to monitor event notifications from the QR code platform.
Instructions
List all registered webhook endpoints for your API key. The HMAC secret is not included for security.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- packages/mcp/src/tools.ts:677-684 (handler)The handler for the 'list_webhooks' tool, which performs an API request to fetch registered webhooks.
list_webhooks: { description: "List all registered webhook endpoints for your API key. The HMAC secret is not included for security.", inputSchema: z.object({}), handler: async () => { return apiRequest("/api/webhooks"); }, },