Skip to main content
Glama

Hacé Cuentas — Free Calculators

Server Details

Free calculators as MCP tools: finance, taxes, health, units, dates. Search, fetch & compute.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
grblasquiz/hacecuentas
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 3.8/5 across 3 of 3 tools scored. Lowest: 3.2/5.

Server CoherenceA
Disambiguation5/5

Each tool has a unique and clear purpose: search finds calculators, get_calculator retrieves details, and compute performs calculations. No overlap exists.

Naming Consistency5/5

All tools use lowercase with underscores and follow a verb_noun pattern (search_calculators, get_calculator, compute). Consistent naming convention.

Tool Count5/5

Three tools is ideal for this domain: discover, inspect, and compute. Each tool earns its place without unnecessary bloat.

Completeness5/5

The tool surface covers the full workflow: searching for calculators, retrieving their input schema, and computing results. No obvious gaps.

Available Tools

3 tools
computeBInspect

Calcula el resultado de una calculadora en vivo. Pasá el slug y un objeto inputs con los campos (ver get_calculator). Opcional lang (es|en|pt). Devuelve el resultado calculado en JSON.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoidioma del resultado (default es)
slugYesslug de la calc (ej. calculadora-imc)
inputsYespares campo→valor, ej. {"peso":80,"altura":180}
Behavior2/5

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

Sin anotaciones, la descripción debe revelar comportamiento pero solo menciona que devuelve JSON. No informa sobre efectos secundarios, permisos, manejo de errores, o si la operación es de solo lectura o destructiva. 'En vivo' es vago.

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?

Dos oraciones concisas que comunican la acción principal y los parámetros clave sin redundancia. La información está al frente: el propósito primero, luego los detalles.

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

Completeness3/5

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

Para una herramienta con 3 parámetros, sin esquema de salida ni anotaciones, la descripción es adecuada pero no completa. Explica cómo usar inputs, pero no describe la estructura del JSON de retorno más allá de 'resultado calculado', ni cubre casos de error o validación.

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?

La cobertura del esquema es 100%, por lo que la línea base es 3. La descripción agrega valor menor: indica que lang es opcional (default es) y provee ejemplo de formato para inputs, lo que ayuda pero no es crítico.

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

Purpose4/5

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

La descripción indica claramente que la herramienta calcula el resultado de una calculadora en vivo, identificando verbos y recurso. Aunque no diferencia explícitamente de los hermanos, se entiende que calcula mientras get_calculator obtiene definiciones y search_calculators busca.

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

Usage Guidelines3/5

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

Se menciona pasar slug y inputs, y referencia get_calculator para los campos, lo que sugiere un flujo de uso. No hay guía explícita sobre cuándo no usarla o alternativas como search_calculators.

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

get_calculatorAInspect

Devuelve la ficha de una calculadora por slug: qué inputs toma (id, tipo, requerido, valores válidos) y una URL de ejemplo. Usalo antes de compute para saber qué parámetros pasar.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesslug de la calc (ej. calculadora-imc)
Behavior3/5

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

No annotations are provided, so the description must cover behavioral traits. It describes return content but does not mention idempotency, failure modes, or permissions. Adequate but not thorough.

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 in Spanish, front-loaded with purpose and usage advice. No redundant information.

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 low complexity (1 required param, no output schema), the description covers purpose, usage, and return content sufficiently. Could mention error handling or output structure, but not necessary for this simple retrieval.

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 coverage is 100% with a clear description for 'slug'. The tool description adds little beyond restating the parameter's role, earning a baseline score.

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 it returns calculator details by slug, including inputs and example URL. It distinguishes itself from siblings 'compute' and 'search_calculators' by advising use before compute.

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 to use before compute to know parameters, providing clear context. Could be stronger with explicit when-not-to-use, but the sibling names imply alternatives.

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

search_calculatorsAInspect

Busca calculadoras de Hacé Cuentas por palabra clave (ej. "imc", "préstamo", "aguinaldo"). Devolvé el slug para usar luego con get_calculator o compute. Opcional: filtrar por category y limitar resultados.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNomáximo de resultados (default 10)
queryYespalabras clave a buscar
categoryNofiltro opcional de categoría (finanzas, salud, deportes, impuestos, etc.)
Behavior3/5

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

With no annotations, the description carries the full burden. It describes the search behavior and optional filters, but does not explicitly state that it is read-only or mention any side effects, rate limits, or authentication requirements. However, the nature of 'search' implies non-destructive action.

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, front-loaded with the main action. Every word serves a purpose, with no redundancy or filler.

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?

The tool has no output schema, but the description explains what is returned (slug) and how it fits into a workflow with siblings. It could mention response structure or pagination, but for a simple search tool, it is adequately complete.

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

Parameters4/5

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

Schema coverage is 100%, providing baseline of 3. The description adds value by giving example keywords and explaining the purpose of the parameters (e.g., returning slug for later use), which helps agents understand the context beyond the schema definitions.

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: search calculators by keyword, with examples. It distinguishes from siblings by specifying that the returned slug is for use with get_calculator or compute.

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?

Guidance is explicit about using the returned slug with sibling tools, implying this is a preparatory step. No alternative tools or when-not-to-use scenarios are mentioned, but the workflow context is clear.

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
    A
    quality
    C
    maintenance
    The most comprehensive everyday calculator MCP server — 501 tools across 22 categories covering 8 countries' tax systems (FR, BE, CH, CA, US, UK, MA, SN). Finance, health, math, science, construction, conversions, education, sport, cooking, travel, and more. Free, no API key required. Streamable HTTP transport.
    15
    19
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Free MCP server for Claude with math and financial calculation tools — unit conversion, currency math, compound interest, statistics.
    8
    1
    MIT
  • F
    license
    -
    quality
    B
    maintenance
    A public, no-auth remote MCP server that exposes Arc & Ledger's free tax calculators and intake funnel as tools inside AI assistants. Provides tools for IRS notice explanation, FBAR/FATCA, LLC vs S-Corp comparison, quarterly tax estimates, and more.
  • F
    license
    -
    quality
    D
    maintenance
    A comprehensive MCP server providing basic and advanced math operations (addition, subtraction, statistics, etc.) as well as smart prompts for multiplication tables, equation solving, financial calculations, geometry, unit conversion, loan amortization, probability, and fitness analytics.
    1

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.