Skip to main content
Glama

Summary statistics for a numeric column

dataset_stats

count, min, max, mean, median and sum of a numeric column of the Mustvo 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 carries the behavioral burden. It discloses that grouping commas and currency are handled and that non-numeric rows are excluded and counted, which is valuable. However, it doesn't mention whether the operation is read-only, error handling, or performance, but for a stats tool these are less critical. It adds context beyond the schema.

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?

One concise sentence that packs all essential information: the operation, the output statistics, and data handling behaviors. No filler, perfectly front-loaded. It earns its place.

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 simple one-parameter tool with no output schema, the description is fairly complete. It specifies what statistics are returned and how data quirks are handled. It doesn't cover edge cases like missing columns or empty results, but those are minor. Overall, an agent can correctly invoke it without further clarification.

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?

The schema has one parameter 'column' with no description, and schema coverage is 0%. The description mentions 'numeric column of the Mustvo dataset', which implies the parameter is a column name and that it must be numeric. However, it doesn't provide examples, format expectations, or clarify case sensitivity or exact naming. It provides some meaning but not fully compensates for the lack of schema descriptions.

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 verb (compute) and resource (numeric column of the Mustvo dataset) and lists the exact statistics returned. It distinguishes from siblings like dataset_row or dataset_search by focusing on aggregation, making it unmistakable what this tool does.

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?

While not explicitly stating when to use this vs alternatives, the specific purpose (summary statistics for a numeric column) strongly implies its use case. It doesn't mention exclusions or alternatives, but the sibling names (columns, compare, row, search, top) are distinct enough that confusion is unlikely. It's clear but could have explicitly stated 'use this when you need column statistics'.

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

Most tools target clearly distinct operations: schema, provenance, exact match, substring search, stats, ranking, and comparison. dataset_row and dataset_compare both filter by column values, but their stated purposes (exact lookup vs. ordered multi-value comparison) keep them mostly distinguishable.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and snake_case style, making the namespace predictable. There is minor mixing between noun-style names (dataset_columns, dataset_row) and verb-style names (dataset_compare, dataset_search), but the overall pattern is still readable.

Tool Count5/5

Seven tools is well-scoped for a single-dataset exploration server. Each tool covers a distinct common query need without unnecessary redundancy.

Completeness4/5

The surface covers schema discovery, provenance, exact lookups, substring search, numeric summaries, top/bottom ranking, and multi-value comparisons. Minor gaps like combined filters or pagination beyond 50 results exist, but agents can work around them for most questions.

Resources