Cash Runway
cash_runwayCompute months of cash runway and the projected out-of-cash date. FREE.
Typical input {"cash_balance": 120000, "monthly_burn": 15000, "monthly_revenue": 5000} returns {"runway_months": 12.0, "net_burn_monthly": 10000, "projected_out_of_cash": "YYYY-MM-DD"}; when revenue covers burn it returns {"runway": "infinite at current numbers (revenue covers burn)", ...}.
Use when a cash balance and a monthly burn are known. Not for per-unit profitability (unit_economics). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "cash_balance must be >= 0"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cash_balance | Yes | Cash on hand today; must be 0 or greater, e.g. 120000. | |
| monthly_burn | Yes | Total monthly outflow in the same currency as cash_balance, e.g. 15000. | |
| monthly_revenue | No | Monthly inflow netted against burn, e.g. 5000. Default 0. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||