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 Cmmsly 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

B3.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It does disclose that grouping commas and currency are handled and that non-numeric rows are excluded and counted—useful behavioral context. However, it does not describe the output structure, error handling, or whether the column must already exist.

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 statistic list and then places the row-handling caveats in parentheses. It is economical with words, though the dataset name 'Cmmsly' appears to be misspelled.

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 one-parameter tool, the description adequately covers the target column and preprocessing behavior. But with no output schema and no annotations, an agent is left without information about the return format (e.g., dictionary vs list) and potential error conditions, leaving some ambiguity.

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?

Schema coverage is 0% and the only parameter is 'column' defined as a non-empty string. The description adds meaning by clarifying the column must be numeric, but it does not specify how the column name is passed or how edge cases like whitespace or special characters are handled. Partial compensation for the schema gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description explicitly enumerates the computed statistics (count, min, max, mean, median, sum) and identifies the target resource as a numeric column of the Cmmsly dataset. This distinguishes it from siblings like dataset_columns or dataset_top, though it relies on the title 'Summary statistics' to supply the verb.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use dataset_stats versus alternatives such as dataset_search or dataset_top. It implies that the tool is for numeric column summaries, but it does not state selection criteria or exclusions.

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

The seven tools are mostly distinct: schema, provenance, exact-match row lookup, substring search, value-list comparison, numeric stats, and top-N ranking each serve a clear purpose. dataset_row and dataset_compare both filter rows by column values, and dataset_stats/dataset_top both operate on numeric columns, so there is minor potential for confusion, but the descriptions disambiguate them adequately.

Naming Consistency5/5

All tools share a consistent dataset_ prefix and use lowercase snake_case throughout. The second segment is a concise operation or concept (columns, compare, provenance, row, search, stats, top), providing a predictable naming pattern.

Tool Count5/5

Seven tools is well-scoped for a single-dataset exploration server. Each tool addresses a distinct query type without redundancy or bloat.

Completeness5/5

The surface covers the full range of common dataset questions: schema discovery, provenance/citation, exact and fuzzy row retrieval, value comparison, numeric statistics, and ranking. No significant dead ends or missing operations are evident for the stated purpose.

Resources