Skip to main content
Glama
eliaskress

FlowCheck Financial API MCP Server

by eliaskress

flowcheck_get_balance

Retrieve combined financial balances from Stripe and bank accounts in a single API call, providing available and pending amounts in USD cents for workflow analysis.

Instructions

Get combined Stripe and bank balances in one call. Returns available/pending Stripe balance and Plaid bank balance. All amounts are in cents (USD).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The async handler function that calls the FlowCheckClient to fetch the balance from the API and returns the result as text.
    async () => {
      const result = await client.request("GET", "/balance");
      return { content: [{ type: "text" as const, text: result }] };
    },
  • Schema definition for the flowcheck_get_balance tool, including title, description, and an empty input schema.
    {
      title: "Get Balance",
      description:
        "Get combined Stripe and bank balances in one call. " +
        "Returns available/pending Stripe balance and Plaid bank balance. " +
        "All amounts are in cents (USD).",
      inputSchema: z.object({}),
    },
  • Tool registration block for flowcheck_get_balance within the registerBalanceTools function.
    server.registerTool(
      "flowcheck_get_balance",
      {
        title: "Get Balance",
        description:
          "Get combined Stripe and bank balances in one call. " +
          "Returns available/pending Stripe balance and Plaid bank balance. " +
          "All amounts are in cents (USD).",
        inputSchema: z.object({}),
      },
      async () => {
        const result = await client.request("GET", "/balance");
        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