Skip to main content
Glama

Two tables → what does not match (the VLOOKUP job), with the arithmetic proof

reconcile_ledger
Read-onlyIdempotent

Reconciles two sets of records — your books against a bank, platform, or supplier statement. Matches rows on a key column, compares an amount column, and returns three lists: only in A, only in B, and same key but different amount. Amounts are compared in integer cents, so 0.1 + 0.2 never invents a phantom difference for someone to chase. The response also proves the result: the listed differences are re-added and must equal the gap between the two totals, checked in code. Use for month-end close, platform payouts vs orders, or any "these two numbers should agree and do not" problem. This is the job people do by hand with VLOOKUP or a groupby and then cannot prove they got right.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesColumn name to match rows on, e.g. order_id.
url_aNoLink to side A (e.g. your books).
url_bNoLink to side B (e.g. the statement).
amountYesNumeric column to compare, e.g. amount.
text_aNoOr the CSV content of side A directly.
text_bNoOr the CSV content of side B directly.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnly, idempotent, and non-destructive, and the description adds meaningful detail: amounts are compared in integer cents to avoid floating-point phantom differences, and the response proves correctness by re-adding differences to equal the total gap. This goes well beyond the annotations.

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 four sentences, each earning its place: function, precision handling, proof mechanism, and usage scenarios. It is front-loaded with the action verb and remains free of filler.

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 an output schema and strong annotations, and the description covers all necessary context: what it does, how it handles numeric precision, what the output looks like (three lists plus proof), and when to use it. No important behavioral aspect is missing.

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 covers all 6 parameters, so the baseline is 3. The description adds semantic context by explaining that 'key' is the column to match on, 'amount' is the column to compare, and url_a/url_b/text_a/text_b represent the two sides (e.g., books vs statement). This reinforces the schema descriptions and gives real-world meaning.

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 opens with 'Reconciles two sets of records' and specifies exactly what happens: matching rows on a key column, comparing an amount column, and returning three named lists. It clearly distinguishes from sibling diff tools by emphasizing the arithmetic proof element.

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?

It states concrete use cases ('month-end close, platform payouts vs orders, or any "these two numbers should agree and do not" problem') and frames it as the automated replacement for manual VLOOKUP/groupby. However, it does not explicitly name sibling tools as alternatives or list when not to use it, so it stops short of a 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

A3.9/5.0
Disambiguation5/5

Every tool has a clearly distinct purpose with detailed descriptions that explicitly differentiate even close pairs like diff_tables vs reconcile_ledger and list_models vs model_costs. No two tools appear to do the same thing, and the what_can_you_do tool further resolves any confusion.

Naming Consistency3/5

The majority of tools follow a verb_noun snake_case pattern (build_app, fetch_page, list_tasks), but several notable deviations exist: ai_visibility, china_reachability, model_costs, json_yaml, pdf_to_markdown, what_can_you_do, recall, remember, and jwt_decode. This mixed convention, while still readable, is not fully consistent.

Tool Count3/5

With 34 tools, the count is high and exceeds the typical comfortable range for an MCP server. However, the server is a broad AI utility platform covering web, data, LLM, conversion, and scheduling tasks, and each tool appears to serve a distinct purpose with little redundancy, making the large but organized set borderline appropriate for its scope.

Completeness3/5

The tool surface covers a wide array of common workflows (search, fetch, table operations, PDF extraction, model comparisons, task scheduling, memory). However, check_job references deep_research, translate_pdf, and make_slides which are not present in the tool list, and there is no update tool for tasks/apps or a way to delete memories, leaving some user journeys incomplete.

Resources