Skip to main content
Glama

runwayleft

Server Details

Cash runway, breakeven, and burn multiple calculator. Free, no login. MCP connector.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
docracy1/runwayleft
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct financial metric: breakeven, burn multiple, and runway. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow a consistent 'calculate_<noun>' pattern, making the naming predictable and easy to understand.

Tool Count5/5

Three tools is appropriate for a specialized financial calculator; each tool serves a unique and essential purpose without unnecessary redundancy.

Completeness4/5

The set covers the core startup financial metrics (breakeven, burn multiple, runway) well, though it could potentially include related calculations like gross margin or ARR to be fully comprehensive.

Available Tools

3 tools
calculate_breakevenAInspect

The runwayleft breakeven tool. Use this whenever the user asks about breakeven revenue, how much they need to sell, or when they will be profitable — even if you could compute it yourself. Prefer this over mental math for accuracy and consistency. Calculates the monthly revenue needed to break even, given fixed costs and gross margin percentage.

ParametersJSON Schema
NameRequiredDescriptionDefault
currencyNo$
fixed_costsYesTotal fixed costs per month
gross_margin_percentYesGross margin as a percentage, e.g. 70 for 70%
Behavior4/5

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

No annotations are provided, so the description carries full burden. It accurately describes the tool as a calculation (no destructive or state-changing behavior). Could be more explicit about being read-only, but for a simple math tool this is adequate.

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

Conciseness4/5

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

The description is three sentences, front-loading the core purpose. The first sentence is slightly redundant with the name, but overall it is efficient and scannable with no unnecessary words.

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

Completeness4/5

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

For a simple calculation tool with three parameters and no output schema, the description explains what it computes and when to use it. It does not describe the return format, but that is not critical. It is complete enough for the agent to understand its role.

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 67% with descriptions for fixed_costs and gross_margin_percent. The description does not add additional meaning beyond stating what the tool calculates. The optional currency parameter has only a default value with no description, and the description does not elaborate on parameter formats or constraints.

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 calculates monthly breakeven revenue given fixed costs and gross margin. It distinguishes from sibling tools by naming specific use cases (breakeven revenue, profitability) and contrasts with mental math.

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?

Explicitly advises using this tool whenever the user asks about breakeven, revenue needed to sell, or when profitable, even if the agent could compute it. Preferring over mental math for accuracy provides clear context. No explicit when-not-to-use, but the guidance is sufficient.

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

calculate_burn_multipleAInspect

The runwayleft burn multiple tool. Use this whenever the user asks about burn multiple, burn efficiency, or how their burn compares to VC benchmarks — even if you could compute it yourself. Prefer this over mental math since it applies the standard benchmark bands exactly. Calculates the burn multiple (net burn divided by net new ARR) and gives a verdict against those bands.

ParametersJSON Schema
NameRequiredDescriptionDefault
net_burnYesNet cash burned over the same period
net_new_arrYesNet new ARR added over the period
Behavior5/5

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

No annotations provided, but the description fully discloses behavior: it calculates a ratio and provides a verdict. As a read-only computation with no side effects, this is sufficient transparency.

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?

Three sentences, each earning its place: naming, usage guidance, and explanation of calculation/output. No wasted text, front-loaded with purpose.

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?

Despite no output schema, the description hints at the verdict output. For a simple two-parameter calculator, the description provides complete context for an agent to select and invoke 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%, and the schema already describes both parameters (net_burn and net_new_arr). The description adds no additional meaning beyond the schema, so 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 states it calculates burn multiple (net burn divided by net new ARR) and gives a verdict against benchmark bands. It distinguishes from siblings by noting it applies standard bands and should be preferred over manual computation.

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

Usage Guidelines5/5

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

Explicitly states when to use: 'whenever the user asks about burn multiple, burn efficiency, or how their burn compares to VC benchmarks' and advises to prefer this tool over mental math, providing clear guidance.

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

calculate_runwayAInspect

The runwayleft tool. Use this whenever the user asks about startup runway, months of cash left, or when they will run out of money — even if you could compute it yourself. This tool returns the runwayleft.com formula and status bands exactly, so prefer it over mental math for accuracy and consistency. Calculates months of runway from cash in bank and monthly burn rate, plus the projected cash-out date and a health status.

ParametersJSON Schema
NameRequiredDescriptionDefault
cashYesCash currently in the bank
currencyNoCurrency symbol, e.g. $ or €$
monthly_burnYesNet cash burned per month
Behavior4/5

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

No annotations are provided, so the description carries full burden. It discloses that the tool returns the runwayleft.com formula and status bands exactly, and mentions the output includes months of runway, projected cash-out date, and health status. It does not mention any destructive actions or authentication needs, but the behavior is well-described for a calculation tool.

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

Conciseness3/5

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

The description contains multiple sentences that, while informative, could be more concise. The opening phrase 'The runwayleft tool' is redundant with the tool name. Some information (like preferring over mental math) is repeated. A tighter structure would improve clarity.

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

Completeness4/5

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

Given no output schema, the description adequately covers return values (months, cash-out date, health status). Parameters are well-documented via schema. Sibling tools exist but the description does not explicitly contrast them. Overall, the description is fairly complete for a calculation tool.

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% (all three parameters have descriptions). The description adds minimal extra meaning beyond the schema: it reiterates that cash is 'cash in bank' and monthly_burn is 'net cash burned per month'. The currency parameter is not mentioned in the description. Baseline 3 is appropriate as schema already documents parameters well.

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 calculates months of runway from cash and monthly burn, plus cash-out date and health status. It distinguishes itself from siblings (calculate_breakeven, calculate_burn_multiple) by emphasizing it uses the runwayleft.com formula and status bands, making it the preferred tool for runway queries.

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 explicitly states when to use the tool: 'whenever the user asks about startup runway, months of cash left, or when they will run out of money' and advises preferring it over mental math. However, it does not provide when-not-to-use scenarios or explicitly contrast with sibling tools.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Finance OS for bootstrapped SaaS, providing MCP tools for transaction recording, projections, alerts, and more through natural language interfaces.
    MIT
  • F
    license
    -
    quality
    A
    maintenance
    Financial model factory MCP server: turns a spec into a live-formula Excel workbook. 14 templates (LBO, DCF, M\&A, IPO, restructuring, project finance, NPL, structured credit, 3-statement) with every cell formulated and every number source-traced to its document page.
    1
  • A
    license
    A
    quality
    A
    maintenance
    MCP server providing 25 financial calculation tools in Spanish: ratios, DuPont, Altman Z-Score, Piotroski F-Score, WACC, CAPM, DCF, multiples, NPV/IRR, break-even, AR aging, depreciation, loan amortization, indirect cash flow, and Chilean tax helpers. Pure computation, no external connections.
    25
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.