Skip to main content
Glama

Server Details

Normalize messy CSV into your schema; ambiguous values return as exceptions. $0.02 USDC 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 · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 2 tools

Disambiguation5/5

clean_table performs data cleaning operations while mm_status reports service health and pricing. The two purposes are completely distinct, so an agent would never confuse them.

Naming Consistency4/5

Both names use lowercase snake_case and are readable, but clean_table follows a verb_noun pattern while mm_status is a noun-only status endpoint. This is a minor deviation rather than a systemic inconsistency.

Tool Count3/5

Two tools is thin, but the server has a tightly focused purpose: one core cleaning operation plus a supporting status tool. It feels minimal yet defensible for a single-purpose paid service.

Completeness5/5

The clean_table tool covers all advertised cleaning functionality - date normalization, money conversion, text collapsing, and deduplication - with exception handling and deterministic output. The status tool fills the operational health-check need, leaving no obvious dead ends.

Available Tools

2 tools
clean_tableClean a table against a stated schema (paid, $0.02 USDC)A
Read-onlyIdempotent
Inspect

Normalise a delimited table to the fields you name: dates to ISO, money to numbers, text collapsed, optional deduplication. Anything that cannot be read with certainty is returned as an exception with a reason, never guessed. Every delivered cell is re-checked against its source token before the response is built. Deterministic. PAID: $0.02 USDC on Base mainnet, settled by Circle Gateway via x402 v2; call without payment to receive the PaymentRequired terms.

ParametersJSON Schema
NameRequiredDescriptionDefault
csvYesThe delimited table, including its header row (1–48000 bytes, at most 2000 data rows).
fieldsYesThe agreed schema: which source column becomes which output field, and of what type.
dateOrderNoYour system's date order. The file's own proof always wins over this.
dedupeKeyNoOutput field to deduplicate on. Omit for no deduplication.

TDQS

A4.6/5.0
Behavior5/5

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

Despite having useful annotations (readOnlyHint, idempotentHint), the description adds substantial behavior beyond them: deterministic behavior, a never-guess policy, exception-with-reason returns, per-cell re-checking, and the exact payment flow including the PaymentRequired response when unpaid. It enriches the annotations without contradicting them.

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?

Core behavior is front-loaded in the first sentence, followed by short, high-signal statements about exceptions, verification, determinism, and payment. No sentence is filler; even the payment sentence adds the x402/PaymentRequired flow rather than merely repeating the title's price.

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 description is comprehensive for a tool with no output schema: it explains outcome categories, exception semantics, idempotence, and payment prerequisites. The main gap is that the exact response envelope is implied ('exceptions are returned', 'delivered cells') rather than explicitly enumerated, but the agent has enough to invoke and handle the result correctly.

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 already 100%, so the baseline is 3; the description earns more by adding meaning absent from the schema: dates become ISO, money becomes numbers, text collapses, and deduplication is optional. The transformation semantics are explicitly stated beyond the raw property 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 opens with a specific verb and resource — 'Normalise a delimited table' — and enumerates concrete transformations: dates to ISO, money to numbers, text collapsed, optional deduplication. It is unmistakably distinct from the only sibling (mm_status) and adds paid service context rather than restating the tool name.

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 context for use is clear: use it when a delimited table needs normalization against a stated schema, with exceptions surfaced rather than guessed. It does not explicitly name an alternative condition or a when-not-to-use, but the sibling set is minimal and no confusing alternative exists, so this is strong but not exhaustive.

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

mm_statusService status (free)A
Read-only
Inspect

Free health/status: service status, version, environment, network, autonomy mode and the paid offer. No secrets.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark the tool as read-only, and the description adds meaningful context: it is a free health/status endpoint, includes a defined set of information, and explicitly states 'No secrets.' This goes beyond the annotation without contradicting it, though it does not detail response format or potential limitations.

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 short sentences with no filler. The core purpose is front-loaded, and every phrase adds value, including the security reassurance 'No secrets.'

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?

For a parameterless, read-only status tool, the description is complete: it states what the tool returns, covers the free/paid dimension, and notes the absence of secrets. No output schema exists, but the enumerated content gives an agent enough to decide whether to call it.

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 has zero parameters, so the input schema is trivially complete. Per the baseline for parameterless tools, the description need not add parameter-level detail, and it appropriately focuses on the output instead.

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 resource ('service status') and enumerates its fields (version, environment, network, autonomy mode, paid offer), making its purpose immediately clear. The scope is distinct from the sibling clean_table, so an agent can tell them apart without further investigation.

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?

The description implies the tool is for health/status checks, but it does not explicitly state when to use it versus alternatives or provide exclusion criteria. The sibling clean_table is unrelated, so there is no direct comparison, leaving usage context mostly implicit.

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. 2 tool updates
    • First observedclean_table
    • First observedmm_status

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to convert CSV text into JSON arrays with automatic delimiter detection and optional header-row handling, accessed through a pay-per-call x402 micropayment API.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI tools to normalize messy payroll spreadsheets (xlsx/xls/csv) into a standardized 10-column template for social insurance calculation, with automatic column detection, net-to-gross conversion, and cross-entity/month merging.
    4
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables normalizing arbitrary Excel spreadsheets with varied headers into 19 canonical fields and clean JSON, with optional LLM disambiguation and offline fallback. Exposes MCP tools for use in Claude, Cursor, and Windsurf.
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources