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 Yieldzo 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.1/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals that grouping commas and currency are handled, non-numeric rows are excluded and counted, and it lists the returned statistics. This goes beyond a simple 'compute stats' and provides meaningful context. However, it does not disclose error handling for invalid columns or empty datasets, which prevents a 5.

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?

The description is a single sentence that front-loads the list of statistics and then provides two parenthetical clarifications. It is efficient and avoids redundancy, though the parenthetical about number handling is somewhat dense. Overall, it is appropriately sized and well-structured for its purpose.

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?

Given the tool's simplicity (one parameter, no output schema, no annotations), the description is largely complete. It explains what stats are returned, how numeric formatting is normalized, and how non-numeric rows are treated. Missing details include potential error messages or behavior if the column does not exist or contains no numeric values, but these are minor for a simple stats tool. The absence of an output schema is partially mitigated by listing the returned stats.

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 only parameter, 'column', is documented only as a string in the schema with no description (0% coverage). The tool description adds crucial meaning by specifying it must be a numeric column and that formatting (commas, currency) is handled. This compensates for the schema's silence and helps the agent understand what value to provide, though it could be more explicit about accepted formats.

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 clearly states the tool computes summary statistics (count, min, max, mean, median, sum) for a numeric column of the Yieldzo dataset. The verb 'compute' is implied, the resource is named, and the specific stats are listed. This distinguishes it from siblings like dataset_row (returns rows) and dataset_search (searches) without ambiguity.

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 usage for numeric column statistics but does not explicitly state when to prefer this over alternatives. It does not mention exclusions or conditions like 'use this instead of dataset_top when you need aggregate measures.' However, the clear purpose partially compensates, so a 3 is appropriate for lacking explicit routing guidance.

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
Disambiguation5/5

Each tool has a clearly distinct purpose: schema, row matching, provenance, exact lookup, substring search, aggregation, and extreme values. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent 'dataset_<action>' pattern (columns, compare, provenance, row, search, stats, top), making the naming predictable and clean.

Tool Count5/5

With 7 tools, the set is well-scoped for a dataset exploration server—enough to cover core operations without being bloated or sparse.

Completeness4/5

The toolkit covers schema inspection, data retrieval (exact, substring, multi-value comparison), statistics, top/bottom values, and provenance. Missing only niche operations like distinct value enumeration or sampling, but nothing critical for typical dataset exploration.

Resources