Skip to main content
Glama

Emergency fund calculator

calc_emergency_fund
Read-onlyIdempotent

Read-only educational calculator. Calculates emergency fund target from monthly expenses and coverage months, tracks progress, and estimates time-to-goal. Returns a result from caller-supplied public inputs without changing page or account state, accessing BetterOff customer data, or providing personalized financial advice.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
currentSavingsNoCurrent emergency savings
monthsCoverageNoMonths of coverage
monthlyExpensesNoMonthly essential expenses — Housing, food, utilities, insurance, debt minimums.
monthlySavingsRateNoMonthly savings rate — Amount directed toward this goal each month.
insuranceDeductibleReserveNoInsurance deductible reserve — Optional reserve for the largest likely health, home, or auto deductible not already in monthly expenses.
variableIncomeBufferMonthsNoExtra variable-income buffer (months) — Optional additional coverage for commissions, contract work, seasonal income, or a single-income household.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, so the safety profile is covered. The description adds value by stating it does not change page or account state, does not access BetterOff customer data, and does not provide personalized financial advice—context beyond the annotations that tells the agent what side effects and data access are absent. This is a meaningful addition for a public calculator.

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?

Two sentences with no filler. The first sentence states the core purpose and calculations, and the second clearly delimits what it does not do. The key behavioral constraints are front-loaded and easy to scan, making it efficient for an agent to parse.

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 the tool's moderate complexity (6 params, no required fields), an output schema, and comprehensive annotations, the description is sufficiently complete. It covers purpose, read-only nature, and data-access limitations. The output format is handled by the output schema, so no further return-value details are needed. Minor omissions like edge-case behavior are not critical for a calculator of this type.

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%, so each parameter already has a clear description. The description's phrase 'from monthly expenses and coverage months' only highlights two of the six parameters, but the schema handles the rest. Since the schema does the heavy lifting, a baseline 3 is appropriate; the description adds no parameter-level nuances beyond the schema.

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?

Description clearly states a specific verb and resource: 'Read-only educational calculator' for calculating emergency fund target, tracking progress, and estimating time-to-goal. It distinguishes itself from siblings by its educational, read-only nature and its focus on emergency funds, setting it apart from calculators like calc_savings_goal or calc_fire. The phrase 'without... providing personalized financial advice' further clarifies its scope.

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 provides clear context: it is a read-only educational tool that works from caller-supplied public inputs and does not access customer data or give personalized advice. This implicitly tells the agent when to use it (when a simple, non-personalized estimate is needed) and when not to (when personalized advice is required). It does not name specific alternatives, but the context is strong enough for tool selection.). It lacks explicit 'use X instead' guidance, but the boundaries are well-defined.

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.

TDQS

A3.8/5.0
Disambiguation2/5

The 14 calc_* tools are individually distinct, but run_public_calculator and compare_public_scenarios overlap with all of them, making it unclear when to use a specific calculator versus the generic runner. list_public_calculators and search_public_docs also have somewhat fuzzy boundaries.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (calc_*, list_*, get_*, search_*, compare_*, run_*), with no mixed casing or irregular verb styles.

Tool Count3/5

At 22 tools, the set is on the heavy side and falls in the borderline 16–25 range. While most calculators earn their place, the generic run_public_calculator and compare_public_scenarios duplicate functionality already covered by the calc_* tools, inflating the count.

Completeness5/5

The surface covers a broad personal-finance calculator domain plus discovery, contract introspection, running, comparing, docs, pricing, and feature details. For a read-only educational server, there are no obvious gaps or dead ends.

Resources