Skip to main content
Glama

burn-rate-calculator

Read-onlyIdempotent

Compute a startup's gross burn, net burn, and runway from starting cash, ending cash, the period in months, and optional monthly revenue. Returns a health label benchmarked to standard SaaS funding-stage runway expectations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ending_cashYesCash on hand at the end of the period, in dollars. If higher than starting_cash, the company is cash-positive and runway is effectively infinite.
period_monthsYesLength of the measurement window in months (default 1). Use 1 for last month, 3 for a quarter, 12 for the trailing year.
starting_cashYesCash on hand at the start of the period, in dollars. Use the bank balance plus any short-term equivalents.
monthly_revenueNoOptional monthly revenue, in dollars. When provided, the engine separates gross burn (operating expense) from net burn (cash decline after revenue). Omit if you only want to measure raw cash decline.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
healthYesCoarse health label benchmarked to SaaS funding stages: 'danger' (<6mo), 'tight' (6-12mo), 'healthy_seed' (12-18mo), 'healthy_series_a' (18-24mo), 'healthy_series_b_plus' (24+mo), 'cash_positive' (revenue ≥ expenses).
net_burnYesMonthly net cash decline in dollars. Negative when the company gained cash during the period.
gross_burnYesMonthly gross operating expense in dollars (net_burn + monthly_revenue). Equals net_burn when revenue is 0 or unspecified.
runway_monthsYesMonths of runway at the current net burn rate. null when net_burn ≤ 0 (cash is flat or growing — runway is effectively infinite).
monthly_revenueYesEchoed revenue input, 0 when unspecified.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety and side-effect profile is established. The description adds behavioral context beyond these annotations by specifying the outputs (gross burn, net burn, runway) and the unique 'health label' benchmarked to SaaS funding-stage expectations. It does not contradict any annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The first sentence front-loads the core purpose and inputs, while the second adds the unique health-label output. Every word earns its place, making it highly concise and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a straightforward calculator with four simple numeric parameters, all fully documented in the schema. Annotations provide safety context, and an output schema exists (as stated in context signals), so the description need not explain return values. The description adds the health-label benchmark, ensuring complete context for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with each parameter already explained in detail (e.g., starting_cash: 'Cash on hand at the start of the period, in dollars. Use the bank balance plus any short-term equivalents.'). The description adds no additional parameter-level meaning, but this is acceptable because the schema carries the full burden. Baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Compute a startup's gross burn, net burn, and runway from starting cash, ending cash, the period in months, and optional monthly revenue.' This includes a specific verb ('Compute'), a resource ('startup's gross burn, net burn, and runway'), and enumerates the inputs, which distinguishes it from all sibling calculator tools. The additional mention of a 'health label benchmarked to standard SaaS funding-stage runway expectations' further differentiates it.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool by listing the required parameters (starting cash, ending cash, period months) and optional monthly revenue, giving the agent clear contextual cues about the data needed. However, it does not explicitly mention alternatives or when not to use it. The schema provides additional usage guidance for the period_months parameter (e.g., 'Use 1 for last month, 3 for a quarter, 12 for the trailing year').

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources