Skip to main content
Glama

Santismm Knowledge — Harness Engineering, Agentic AI & Governance

Calculate the operational economics of an AI agent

calculate_agent_economics
Read-onlyIdempotent

Calculate monthly operating cost, cost per verified outcome, manual baseline, savings, ROI and break-even success rate from explicit assumptions. Use this for an agent business case or scenario comparison; keep every monetary input in the same currency and cite the returned canonical_url.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolCostYesExternal tool cost per attempt.
retryRateYesExtra attempts as a percentage of initial volume.
hourlyCostYesFully loaded human hourly cost, in the chosen currency.
inputPriceYesModel input price per million tokens, in the chosen currency.
reviewRateYesShare of cases reviewed by a person.
inputTokensYesInput tokens per agent attempt.
outputPriceYesModel output price per million tokens, in the chosen currency.
successRateYesCorrectly verified outcomes as a percentage of cases.
outputTokensYesOutput tokens per agent attempt.
manualMinutesYesManual handling time per case.
monthlyVolumeYesCases attempted per month.
reviewMinutesYesHuman review minutes per reviewed case.
reworkMinutesYesHuman rework minutes per failed case.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
slugYes
unitsYes
inputsYes
sourceYes
api_urlYes
licenseYes
resultsYes
updatedYes
versionYes
formulasYes
languageYes
warningsYes
assumptionsYes
canonical_urlYesCite this URL.
interpretationYes
schema_versionYes
methodology_urlYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, open-world, and non-destructive behavior. The description adds valuable non-obvious behavioral context beyond the annotations: all monetary inputs must be in the same currency, the tool works 'from explicit assumptions,' and the returned canonical_url should be cited. No contradiction with annotations exists.

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 outputs; the second provides usage context and key constraints. Every sentence contributes information an agent needs.

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 has 13 required parameters and an output schema, but the description is complete enough for selection and invocation: it states the purpose, the use case, the key cross-parameter constraint, and the citation expectation. The output schema and complete parameter schema cover the remaining detail, so nothing critical is missing.

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 the schema already documents all 13 parameters and their meanings. The description reinforces that monetary inputs should share a currency, which is useful, but it does not add per-parameter semantics beyond what the input schema provides. Baseline 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 names a specific verb ('Calculate') and a specific resource ('operational economics of an AI agent'), then enumerates concrete outputs: monthly operating cost, cost per verified outcome, savings, ROI, and break-even success rate. It also distinguishes itself from sibling calculation tools by scoping to 'an agent business case or scenario comparison'.

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 says 'Use this for an agent business case or scenario comparison,' which gives clear context for when the tool is appropriate. It does not explicitly state when not to use it or name alternatives like calculate_human_supervision_capacity or calculate_evaluation_sample_size, so it stops short of a full 5.

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

A4.4/5.0
Disambiguation5/5

Every tool targets a distinct operation and identifier: search is the entry point, list_* returns browsing summaries, get_* returns a single unit, get_related traverses the graph, and get_overview maps the corpus. Even the similar get_homeric_* trio is cleanly separated by episode/place/route.

Naming Consistency5/5

All names follow snake_case verb_noun: get_* for singular retrieval, list_* for enumeration, plus search. get_related and get_overview are the only deviations but remain predictable read operations.

Tool Count4/5

21 tools is above the typical 3-15 range, but the count is justified by the number of distinct corpora and the consistent list/get pairing for each; there are no redundant tools, so it is only slightly heavy.

Completeness5/5

The server offers a complete read-side lifecycle for this knowledge corpus: overview, search, list, get, and graph traversal. For a read-only knowledge server, there are no obvious dead ends; coverage of claims, patterns, architectures, governance, handbook and Homeric atlas is thorough.