MCP Hub
Back to servers

FlowCheck Financial API MCP Server

Flowcheck MCP exposes workflow analysis tools from the Flowcheck API so AI agents can detect issues and validate processes programmatically.

glama
Forks
1
Updated
Mar 6, 2026

@flowcheck/mcp-server

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

Setup

Claude Code

claude mcp add flowcheck \
  --transport stdio \
  --env FLOWCHECK_API_KEY=fc_live_... \
  -- npx -y @flowcheck/mcp-server

Claude Desktop

Add to your claude_desktop_config.json:

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

Cursor

Add to your .cursor/mcp.json:

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

Environment variables

VariableRequiredDescription
FLOWCHECK_API_KEYYesYour FlowCheck API key (fc_live_... or fc_test_...)
FLOWCHECK_BASE_URLNoOverride the API base URL (default: https://developer.usepopup.com/api/v0)

Available tools

ToolParametersDescription
flowcheck_registeremailCreate account (no key needed)
flowcheck_get_registration_statustokenCheck registration / retrieve API key
flowcheck_get_balanceStripe + bank balances
flowcheck_get_cashflowwindow? (7d, 30d, 90d)Revenue, expenses, net by day
flowcheck_list_payoutsstatus?, from?, to?, limit?, cursor?Stripe payouts with match status
flowcheck_get_payoutidSingle payout with bank match
flowcheck_list_transactionsfrom?, to?, limit?, cursor?Bank transactions from Plaid
flowcheck_list_discrepanciesstatus?, type?, limit?, cursor?Missing or mismatched amounts
flowcheck_get_reconciliation_summary30-day financial health score
flowcheck_get_reconciliationpayout_idPer-payout reconciliation detail
flowcheck_get_positionFull financial snapshot for AI agents
flowcheck_get_alertsActive issues and discrepancies
flowcheck_connect_striperestricted_keyConnect Stripe account
flowcheck_create_plaid_link_tokenStart Plaid bank connection
flowcheck_exchange_plaid_tokenpublic_tokenComplete Plaid connection
flowcheck_list_webhooksList webhook endpoints
flowcheck_create_webhookurl, eventsRegister webhook endpoint
flowcheck_delete_webhookidRemove webhook endpoint

Example prompts

After connecting the MCP server, try asking:

  • "What's my current balance across Stripe and my bank?"
  • "Show me last week's payouts and whether they all landed in my bank"
  • "Are there any missing deposits or discrepancies?"
  • "What did we make this month?"
  • "Give me a financial health summary"

Get an API key

Sign up at developer.usepopup.com to get your API key. 7-day free trial with 100 credits included.

License

MIT

Reviews

No reviews yet

Sign in to write a review