flowcheck_list_webhooks
View all registered webhook endpoints, their subscribed events, and current status to monitor integration points.
Instructions
List all registered webhook endpoints with their events and status.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/webhooks.ts:9-20 (handler)The registration and handler implementation for the "flowcheck_list_webhooks" tool.
server.registerTool( "flowcheck_list_webhooks", { title: "List Webhooks", description: "List all registered webhook endpoints with their events and status.", inputSchema: z.object({}), }, async () => { const result = await client.request("GET", "/webhooks"); return { content: [{ type: "text" as const, text: result }] }; }, );