Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_sync

Trigger a full sync of all connected integrations and run reconciliation to detect issues and validate financial processes programmatically.

Instructions

Trigger a full sync of all connected integrations (Stripe, Shopify, Plaid) and run reconciliation. Returns which sources were synced, how many records were processed, and reconciliation results. Rate limited to 1 sync per 5 minutes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler function that executes the POST request to /sync on the FlowCheckClient.
    async () => {
      const result = await client.request("POST", "/sync");
      return { content: [{ type: "text" as const, text: result }] };
    },
  • src/tools/sync.ts:9-23 (registration)
    The registration block for the flowcheck_sync tool using server.registerTool.
    server.registerTool(
      "flowcheck_sync",
      {
        title: "Sync Integrations",
        description:
          "Trigger a full sync of all connected integrations (Stripe, Shopify, Plaid) " +
          "and run reconciliation. Returns which sources were synced, how many records " +
          "were processed, and reconciliation results. Rate limited to 1 sync per 5 minutes.",
        inputSchema: z.object({}),
      },
      async () => {
        const result = await client.request("POST", "/sync");
        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