Skip to main content
Glama

UNLAV CSV Reconcile

Server Details

Compare CSV tables by key; report changes and ambiguous rows. 0.05 USDC on Base via x402.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Ivansky1/unlav-data-tools-mcp
GitHub Stars
0

TDQS

A3.5/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct role: demo is a fixed example, ping checks health, reconcile_csv_tables performs the core comparison, and service_info provides metadata. There is no meaningful overlap in purpose or expected output.

Naming Consistency3/5

Names are all lowercase, but conventions are mixed: demo and ping are bare verbs/nouns, while reconcile_csv_tables and service_info use snake_case with different semantic structures. The set is readable but not following one predictable pattern.

Tool Count5/5

Four tools is well-scoped for a focused CSV reconciliation service. The main operation is supported by demo, ping, and service_info without excessive or redundant tools.

Completeness5/5

The core reconcile operation covers the stated purpose, and the supporting tools cover discovery, health, pricing, schemas, and limits. No obvious lifecycle gap or dead end is apparent for this narrow service.

Available Tools

4 tools
demoC
Read-only
Inspect

Free fixed synthetic example. No buyer data or payment accepted.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds useful context that the example is fixed, synthetic, and accepts no buyer data or payment, which is beyond the annotation. It does not describe return format or rate limits, but with annotations the bar is lower.

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?

Two short sentences with no wasted words, and the key qualifiers ('free', 'fixed synthetic', 'no buyer data/payment') are front-loaded. However, the sentences prioritize constraints over a clear statement of purpose, which slightly weakens structure.

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?

For a zero-param read-only tool with no output schema, the description provides minimal context: it indicates the tool returns a fixed synthetic example and imposes input restrictions. It does not say what the example contains or what calling the tool yields, leaving the agent to infer the return value.

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?

There are zero parameters, so the baseline is 4. The description does not need to document parameters, and schema description coverage is 100% (vacuously).

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

Purpose2/5

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

The description says 'Free fixed synthetic example' but does not state a specific verb or resource; it largely restates the name 'demo' (example) with modifiers. It does not distinguish this tool from siblings like ping or service_info in terms of what action it performs.

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

Usage Guidelines2/5

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

No explicit when-to-use or when-not-to-use guidance relative to siblings. The clause 'No buyer data or payment accepted' is a restriction on input, but it does not say when to choose this tool over reconcile_csv_tables or service_info.

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

pingB
Read-only
Inspect

Free health check

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds that the call is free, which is mild cost context an agent could use for call-budget decisions, but it says nothing about latency, side effects, or what a successful response looks like.

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?

Two words, front-loaded, zero waste. It is on the terse side bordering on under-specified, but nothing in the sentence can be trimmed and the key claim leads.

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?

For a zero-parameter, read-only tool with no output schema, the definition is nearly viable, but it never states what a health check returns (status text, liveness boolean, latency) or what a failure signals. One extra clause would have made it 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?

The tool takes zero parameters, so per the rubric the baseline is 4. The description correctly implies a no-input invocation, and there is nothing further it could meaningfully document.

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

Purpose3/5

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

The phrase 'health check' gestures at the tool's role without naming what is being checked (the server, the connection, a dependency), and 'Free' is a cost attribute rather than a purpose. It is not a pure restatement of the name 'ping', so it clears the tautology bar, but an agent cannot tell from this alone how it differs from 'service_info' or 'demo'.

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

Usage Guidelines2/5

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

No indication of when to call this instead of the siblings 'demo', 'service_info', or 'reconcile_csv_tables'. The word 'Free' hints it is cheap enough to call casually, but that is inference, not guidance, and no exclusions or prerequisites are given.

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

reconcile_csv_tablesAInspect

Compare two CSV tables by shared key columns. Find changed values, missing rows and ambiguous duplicate keys without editing either file. Price: 0.05 USDC on Base per report.

ParametersJSON Schema
NameRequiredDescriptionDefault
left_csvYesLeft UTF-8 CSV, up to 1 MiB
right_csvYesRight UTF-8 CSV, up to 1 MiB
key_columnsYes
compare_columnsNoDefault: shared non-key columns; [] compares keys only

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses behavior that the annotations do not: that both files are left untouched, that ambiguous duplicate keys are surfaced rather than silently resolved, and that each report costs 0.05 USDC on Base. The pricing/side-effect disclosure is genuinely useful context beyond the readOnlyHint/openWorldHint flags, though it does not explain failure modes for malformed CSVs or oversized inputs.

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, no filler: the core operation and its outputs come first, with the non-mutation guarantee and price appended. Every clause carries information an agent needs before calling the tool.

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?

With no output schema, the description usefully enumerates the report contents (changed values, missing rows, duplicate keys), which substitutes for a return-value spec. Combined with the cost and non-destructive guarantee, an agent has enough to call it correctly; only error/edge-case behavior is unaddressed.

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 75%, so the schema already documents left_csv/right_csv size limits and compare_columns defaults and the empty-list semantics. The description only alludes to 'shared key columns', adding no format, delimiter, or encoding detail beyond what the schema states. 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 and resource ('Compare two CSV tables by shared key columns') and enumerates the exact findings produced: changed values, missing rows, ambiguous duplicate keys. The sibling tools (demo, ping, service_info) are unrelated utilities, so no further differentiation is needed for an agent to pick this one.

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 gives clear context for when this tool applies — reconciling two CSV tables by shared keys — and adds the constraint that neither file is edited, which tells an agent this is safe to invoke on live data. It stops short of explicit when-not guidance or naming an alternative approach, but no sibling overlaps this function.

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

service_infoC
Read-only
Inspect

Free price, schemas, input limits and privacy information

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

C2.9/5.0
Behavior2/5

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

readOnlyHint=true already tells the agent this is a safe, non-mutating call, so the description only needs to add context. It lists returned content categories but says nothing about caching, freshness, rate limits, or that no arguments are required. Marginal value over the annotation.

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?

A single short sentence with no filler and the returned content front-loaded. It is a fragment rather than a full sentence, but it wastes no space.

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?

With no output schema, the description must hint at return contents, and it does list four categories. But those categories are vague ("schemas" of what, price in what form?) and no usage context is supplied, so the picture is only partially complete for a zero-arg read tool.

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?

The tool takes zero parameters, so there is nothing for the description to disambiguate. Baseline 4 applies.

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

Purpose3/5

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

The description names the resource (service info) and enumerates what it returns: price, schemas, input limits, privacy information. However, it uses a fragment with no verb ("Free price, schemas...") so it never states the action, and it doesn't distinguish itself from siblings like ping or demo. Purpose is inferable but not crisply stated.

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

Usage Guidelines2/5

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

No guidance on when to call this versus ping, demo, or reconcile_csv_tables, and no mention of prerequisites or timing. The agent must infer usage entirely from the name.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updates
    • First observeddemo
    • First observedping
    • First observedreconcile_csv_tables
    • First observedservice_info

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to compare two texts line-by-line and receive a structured diff with additions, deletions, unchanged lines, and summary statistics, paid per call via x402 micropayments.
    1
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables users to compare current Aerodrome veNFT voting positions, bounded claimable rewards, and selected pools' voting evidence on Base against a saved local baseline, with retryable, atomically stored change reports. All tools are read-only on chain, requiring no keys, signing, or transactions.
    7
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Arbitrage detection across DEXes on Base. Scan pairs, detect price gaps, estimate profit, simulate flash loan routes.
    7
    43 npm
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.