Flowcheck MCP Server

Stripe payouts, Shopify orders, and bank transactions unified for reconciliation and cash flow

Local serverstdio

What is the Flowcheck MCP server?

Connect Flowcheck to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Stripe payouts, Shopify orders, and bank transactions unified for reconciliation and cash flow. The flowcheck mcp server is what makes that connection.

What the server does

MCP server for the FlowCheck API — give Claude, Cursor, or any MCP client access to your Stripe payouts and bank transactions.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • flowcheck_register — email
  • flowcheck_get_registration_status — token
  • flowcheck_get_balance — —
  • flowcheck_get_cashflow — window? (7d, 30d, 90d)
  • flowcheck_list_payouts — status?, from?, to?, limit?, cursor?
  • flowcheck_get_payout — id
  • flowcheck_list_transactions — from?, to?, limit?, cursor?
  • flowcheck_list_discrepancies — status?, type?, limit?, cursor?
  • flowcheck_get_reconciliation_summary — —
  • flowcheck_get_reconciliation — payout_id
  • flowcheck_get_position — —
  • flowcheck_get_alerts — —

Installation

@flowcheck/mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Credentials and setup notes

Configuration is passed through the environment: FLOWCHECK_API_KEY, FLOWCHECK_BASE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Among the payments and commerce options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Flowcheck's toolset — flowcheck_register, flowcheck_get_registration_status, flowcheck_get_balance and 11 more — is a fair guide to whether it matches your workflow. It is maintained by eliaskress; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Flowcheck.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
flowcheck_registeremail
flowcheck_get_registration_statustoken
flowcheck_get_balance
flowcheck_get_cashflowwindow? (7d, 30d, 90d)
flowcheck_list_payoutsstatus?, from?, to?, limit?, cursor?
flowcheck_get_payoutid
flowcheck_list_transactionsfrom?, to?, limit?, cursor?
flowcheck_list_discrepanciesstatus?, type?, limit?, cursor?
flowcheck_get_reconciliation_summary
flowcheck_get_reconciliationpayout_id
flowcheck_get_position
flowcheck_get_alerts
flowcheck_connect_striperestricted_key
flowcheck_create_plaid_link_token

How to install the Flowcheck MCP server

{
  "mcpServers": {
    "flowcheck": {
      "command": "npx",
      "args": ["-y", "@flowcheck/mcp-server"],
      "env": {
        "FLOWCHECK_API_KEY": "your-value",
        "FLOWCHECK_BASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
FLOWCHECK_API_KEYCredential the server authenticates with.Yes
FLOWCHECK_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Flowcheck to flowcheck register.
  • Use Flowcheck to flowcheck get registration status.
  • Use Flowcheck to flowcheck get balance.

Frequently asked questions

It connects Flowcheck to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (flowcheck_register, flowcheck_get_registration_status, flowcheck_get_balance, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Flowcheck directly.