Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_get_payout

Retrieve payout details from Stripe or Shopify with matched bank transactions and confidence scores to verify financial transactions and detect discrepancies.

Instructions

Get a single payout (Stripe or Shopify) with matched bank transaction details and confidence score.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesStripe payout ID

Implementation Reference

  • The registration and handler implementation for the flowcheck_get_payout tool. It uses the client to request a single payout by ID.
    server.registerTool(
      "flowcheck_get_payout",
      {
        title: "Get Payout",
        description:
          "Get a single payout (Stripe or Shopify) with matched bank transaction details " +
          "and confidence score.",
        inputSchema: z.object({
          id: z.string().describe("Stripe payout ID"),
        }),
      },
      async ({ id }) => {
        const result = await client.request("GET", `/payouts/${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