Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_list_payouts

Retrieve and filter Stripe and Shopify payout records with reconciliation status. View payout amounts, filter by source, status, and date range, and access paginated results with confidence scores.

Instructions

List Stripe and Shopify payouts with reconciliation status. Filter by source, status, and date range. Returns paginated results with match confidence scores. Amounts in cents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sourceNoFilter by payout source
statusNoFilter by payout status
fromNoStart date filter (YYYY-MM-DD)
toNoEnd date filter (YYYY-MM-DD)
limitNoResults per page (default 50, max 100)
cursorNoPagination cursor from previous response

Implementation Reference

  • The tool "flowcheck_list_payouts" is registered here, including its input schema and handler implementation.
    server.registerTool(
      "flowcheck_list_payouts",
      {
        title: "List Payouts",
        description:
          "List Stripe and Shopify payouts with reconciliation status. " +
          "Filter by source, status, and date range. Returns paginated results " +
          "with match confidence scores. Amounts in cents.",
        inputSchema: z.object({
          source: z
            .enum(["stripe", "shopify"])
            .optional()
            .describe("Filter by payout source"),
          status: z
            .enum(["paid", "pending", "in_transit", "failed", "canceled"])
            .optional()
            .describe("Filter by payout status"),
          from: z
            .string()
            .optional()
            .describe("Start date filter (YYYY-MM-DD)"),
          to: z
            .string()
            .optional()
            .describe("End date filter (YYYY-MM-DD)"),
          limit: z
            .number()
            .min(1)
            .max(100)
            .optional()
            .describe("Results per page (default 50, max 100)"),
          cursor: z
            .string()
            .optional()
            .describe("Pagination cursor from previous response"),
        }),
      },
      async (params) => {
        const result = await client.request("GET", "/payouts", { params });
        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