Skip to main content
Glama

site

Summary statistics for a numeric column

dataset_stats

count, min, max, mean, median and sum of a numeric column of the Attestvio dataset (grouping commas and currency are handled; non-numeric rows are excluded and counted).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
columnYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description takes on the burden of behavioral disclosure and does so effectively by noting that grouping commas and currency symbols are handled and that non-numeric rows are excluded and counted. This reveals parsing and data-cleaning behavior that could materially affect results, though null-handling and return format are not specified.

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 a single compact sentence that lists the output statistics first, then adds relevant caveats in a parenthetical. Every clause contributes necessary information, and there is 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?

For a one-parameter tool without an output schema, the description covers input semantics and key behavioral edge cases such as currency handling and non-numeric rows. It does not describe the exact return structure, but enumerating the computed statistics gives the agent enough information to infer the expected result.

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 0%, so the description must carry the meaning of the column parameter. It clarifies that the parameter refers to a numeric column of the Attestvio dataset, which is sufficient context for a single, simple string parameter despite not detailing column-name matching rules.

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 explicitly lists the exact statistics produced (count, min, max, mean, median, sum) on a numeric column of a specific dataset, making the tool's function unambiguous. This is clearly distinguished from sibling tools like dataset_row or dataset_top through the resource and operation described.

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 obtaining summary statistics of a numeric column in the Attestvio dataset, but it does not explicitly state when to use it versus sibling tools or what conditions would make an alternative preferable. No exclusions or alternative routing are provided, so usage context is inferred rather than explicit.

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.8/5.0
Disambiguation4/5

Each tool targets a distinct operation: schema, provenance, exact lookup, substring search, multi-value comparison, aggregation, and top/bottom ranking. The only possible confusion is between dataset_row and dataset_compare, since both do exact value matching, but compare's ordering/multiple-value purpose is sufficiently clarified.

Naming Consistency4/5

All tools share the consistent dataset_ prefix and use lowercase snake_case, which makes them easy to group. The second token mixes nouns (columns, row, stats, top, provenance) with verbs (compare, search), so it is not a uniform verb_noun pattern but remains predictable.

Tool Count5/5

Seven tools is well-scoped for a dataset querying server: every tool covers a distinct aspect of data exploration without redundancy. The count is neither too thin nor too heavy for the stated purpose.

Completeness4/5

The surface covers the main lifecycle of dataset exploration: schema, provenance, exact/match lookups, search, comparison, stats, and ranking. Minor gaps such as pagination beyond 50 results or arbitrary multi-column filters would improve completeness but are not fatal.

Resources