Download · Install
Get your agent on your cash — in two minutes.
Install the MCP server or the CLI, point it at your account with an API key, and ask away. Free — bring your own AI.
- 1
Create a free account
Grab an API key under Settings → API keys.
- 2
Install
The MCP server or CLI — one npm command.
- 3
Wire it into your agent
One line drops it into Claude, Cursor, anything.
- 4
Ask anything
“What's my cash position at the end of week 9?”
MCP server
RecommendedFor Claude Desktop, Claude Code, Cursor & any MCP-compatible client.
1 · Install
npm install -g @cashrunway/mcp2 · Wire it into your client
cashrunway mcp add --client claude-desktopPrefer manual config?
{
"mcpServers": {
"cashrunway": {
"command": "cashrunway-mcp",
"env": { "CASHRUNWAY_API_KEY": "cr_live_…" }
}
}
}CLI
For the terminal, scripts, cron jobs & CI pipelines.
1 · Install
npm install -g @cashrunway/cli2 · Sign in
cashrunway login # or: export CASHRUNWAY_API_KEY=cr_live_…3 · Use it
cashrunway cash-position
cashrunway forecast --weeks 13
cashrunway daily-summary- Pipe JSON straight into your own scripts
- Schedule a daily brief with cron
- Read-only — every call is logged + scoped
The two-minute path
Already on Claude Desktop? Run this, restart Claude, and ask about your cash.
npm install -g @cashrunway/mcp&& cashrunway mcp add --client claude-desktopRequires Node 20+. Works on macOS, Linux & Windows. Homebrew & standalone binaries coming soon.
No account yet?
Free, no credit card — create one, grab a key, and your agent's in.
For advisors · partners
Run your whole client book from one key.
Advisors install the very same MCP server or CLI as everyone else — you just authenticate with a partner key instead of a single-org user key. One partner key reaches every client you advise; you pick which client to query per command.
- 1
Install the same tools
The MCP server or CLI from the cards above — no separate advisor build.
- 2
Use a partner key
A crun_… key reaches every client you advise — not one org.
- 3
Discover your clients
On connect: “Connected as partner → N clients.” plus the list to target.
- 4
Query one client at a time
Name the org per command — --org / the MCP org argument.
Where the partner key comes from
Partner keys are minted in the Partner Portal → API keys by an advisory partner — separate from the cr_live_… keys an individual business issues under Settings → API keys. A partner key starts with crun_and authorises every client org linked to your practice. It’s shown once at creation, so copy it somewhere safe.
CLI — discover, then target
Already installed? Point a partner key at the same binary.
1 · See which clients the key reaches
cashrunway orgs list --token crun_…
# → Connected as partner → 3 clients.
# → table of { Org id, Name, Slug }2 · Run a command against one client
cashrunway brief --org <org-id> --token crun_…MCP — list orgs, pass an org
Wire the partner key in, then your agent picks the client.
1 · Authenticate with the partner key
{ "env": { "CASHRUNWAY_API_KEY": "crun_…" } }2 · The agent discovers + targets a client
cashrunway.list_orgs # → Connected as partner → 3 clients.
cashrunway.get_daily_brief { org: <org-id> }Partner keys are read-only and every call is scoped + logged, exactly like user keys. Usage is metered to each client’s account, so your reads stay attributed to the right book.