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.
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.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool targets a distinct financial metric: breakeven, burn multiple, and runway. There is no overlap or ambiguity between them.
All tools follow a consistent 'calculate_<noun>' pattern, making the naming predictable and easy to understand.
Three tools is appropriate for a specialized financial calculator; each tool serves a unique and essential purpose without unnecessary redundancy.
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 toolscalculate_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.
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | $ | |
| fixed_costs | Yes | Total fixed costs per month | |
| gross_margin_percent | Yes | Gross margin as a percentage, e.g. 70 for 70% |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| net_burn | Yes | Net cash burned over the same period | |
| net_new_arr | Yes | Net new ARR added over the period |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| cash | Yes | Cash currently in the bank | |
| currency | No | Currency symbol, e.g. $ or € | $ |
| monthly_burn | Yes | Net cash burned per month |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceFinance OS for bootstrapped SaaS, providing MCP tools for transaction recording, projections, alerts, and more through natural language interfaces.MIT
- Flicense-qualityAmaintenanceFinancial 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
- AlicenseAqualityAmaintenanceMCP 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.251MIT
- AlicenseAqualityCmaintenanceAn MCP server for analyzing startup financial health and generating metrics reports locally.2MIT