Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_get_reconciliation

Retrieve detailed reconciliation for a Stripe payout, showing confidence score breakdown and matched bank transaction data.

Instructions

Get detailed reconciliation for a specific payout. Shows confidence score breakdown (amount, date, description, bank ID) and the matched bank transaction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
payout_idYesStripe payout ID

Implementation Reference

  • The handler for the 'flowcheck_get_reconciliation' tool is registered and implemented within the registerReconciliationTools function in src/tools/reconciliation.ts.
    server.registerTool(
      "flowcheck_get_reconciliation",
      {
        title: "Reconciliation Detail",
        description:
          "Get detailed reconciliation for a specific payout. " +
          "Shows confidence score breakdown (amount, date, description, bank ID) " +
          "and the matched bank transaction.",
        inputSchema: z.object({
          payout_id: z.string().describe("Stripe payout ID"),
        }),
      },
      async ({ payout_id }) => {
        const result = await client.request(
          "GET",
          `/reconcile/${payout_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