DevelopersMCP
MCP server
Expose SaaSFlow as tools to Claude, ChatGPT, and other Model Context Protocol clients.
The SaaSFlow MCP server is published as @saasflow/mcp.
It exposes the SaaSFlow API as MCP tools so an LLM (Claude Desktop, ChatGPT,
custom clients) can read your subscription, cash, and P&L data.
Two ways to run it
| Mode | Use when |
|---|---|
| Stdio (local) | Claude Desktop, custom clients, scripts. Auth via API key in env var. |
| Remote (HTTPS) | Hosted clients like ChatGPT. Auth via OAuth bearer. |
In both modes, every tool is read-only and scoped to your company.
What's exposed
- Hand-written tools for the most common LLM tasks (browsing transactions, listing customers, search).
- Auto-generated tools — one per OpenAPI operation, skipping
dataandsearch(covered by hand-written tools). - One auto-generated
data_*tool per data slice for pre-aggregated analytics.
Full reference at MCP tools.
Writes
The server has a SAASFLOW_MCP_WRITES=1 flag for future write tools, but no write
tools are registered yet. All current tools are reads.