Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_delete_webhook

Remove a registered webhook endpoint from the FlowCheck Financial API MCP Server to stop receiving automated notifications.

Instructions

Remove a registered webhook endpoint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesWebhook endpoint ID

Implementation Reference

  • The registration and handler implementation for the flowcheck_delete_webhook tool.
    server.registerTool(
      "flowcheck_delete_webhook",
      {
        title: "Delete Webhook",
        description: "Remove a registered webhook endpoint.",
        inputSchema: z.object({
          id: z.string().describe("Webhook endpoint ID"),
        }),
      },
      async ({ id }) => {
        const result = await client.request("DELETE", `/webhooks/${id}`);
        return { content: [{ type: "text" as const, text: result }] };
      },
    );

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/eliaskress/flow-check-financial-api-mcp-server'

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