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 Turndownly 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, the description carries the behavioral disclosure burden. It discloses important data-cleaning behavior: grouping commas and currency symbols are parsed, and non-numeric rows are excluded and counted. This goes beyond a generic 'computes statistics' statement and gives the agent useful expectations about edge cases.

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, information-dense sentence that front-loads the returned statistics and adds edge-case handling in a parenthetical. No words are wasted and every clause contributes useful information.

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 simple one-parameter read-only tool, the description covers the input semantics and the list of computed values. However, with no output schema, it does not state the exact return shape (e.g., whether the result is an object with those keys), and it omits failure behavior such as what happens when the column does not exist or contains no numeric rows.

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?

Since schema description coverage is 0%, the description must compensate for the bare 'column' parameter. It adds semantics by explaining that the column must be numeric, that formatting like commas and currency is normalized, and that non-numeric values are excluded. This is meaningful interpretation beyond the schema.

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 concrete operation—computing summary statistics for a numeric column—and lists exactly which statistics are returned: count, min, max, mean, median, and sum. This uniquely distinguishes it from siblings like dataset_row, dataset_search, and dataset_compare, which serve different purposes.

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 intended use is implied clearly: when an agent needs numeric summary statistics for a column in the Turndownly dataset. However, it does not explicitly state when NOT to use this tool or point to an alternative for other types of queries, so the routing guidance is implicit 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.9/5.0
Disambiguation4/5

Each tool has a clear primary purpose: schema, provenance, exact lookup, substring search, comparison, stats, and top/bottom ranking. There is minor overlap between dataset_row and dataset_compare for single-value lookups, but the descriptions steer usage toward distinct cases.

Naming Consistency5/5

All tools share the dataset_ prefix and use a consistent noun or verb suffix after it. The pattern is predictable and makes it easy to infer what each tool does.

Tool Count5/5

Seven tools is a well-scoped set for querying and exploring a single dataset. Each tool addresses a different query type without unnecessary redundancy.

Completeness4/5

The surface covers schema discovery, provenance, exact matching, substring search, comparisons, numeric statistics, and ranking. Minor gaps like listing all unique values or arbitrary numeric filtering are absent, but they can be worked around with the existing tools.

Resources