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 Topcoatly 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/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavior. It explicitly discloses that grouping commas and currency are handled and that non-numeric rows are excluded and counted, which adds useful 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?

The description is a single, packed sentence with no filler. The statistics list is front-loaded and every phrase adds value.

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 with no output schema, the description covers the computed statistics and data-handling nuances. It stops short of stating the exact return shape, but the listed statistics make the return type reasonably inferable.

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 zero description coverage for the 'column' parameter, so the description must compensate. It does so partially by indicating the column must be numeric, but it does not elaborate on naming, format, or behavior for invalid columns.

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 states a specific verb (count, min, max, mean, median, sum) and a clear resource (numeric column of the Topcoatly dataset). It is immediately distinguishable from siblings like dataset_row or dataset_search.

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 use when summary statistics for a numeric column are needed, and it clarifies the dataset context. However, it does not explicitly mention when to use this tool over alternatives or any 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

Each tool targets a distinct query pattern—schema, provenance, exact match, contains search, ordered value comparison, aggregation, and top/bottom ranking. The only mild ambiguity is between dataset_row and dataset_search, but their exact-match versus contains-match descriptions make the boundary clear.

Naming Consistency5/5

All tools share the consistent dataset_ prefix followed by a clear operation name, and all use lowercase snake_case. The pattern makes the purpose of each tool predictable at a glance.

Tool Count5/5

Seven tools is an appropriate scope for a read-only dataset querying server. Each tool addresses a distinct question type without unnecessary sprawl or redundancy.

Completeness4/5

The toolkit covers schema discovery, provenance, exact and fuzzy lookup, multi-value comparisons, descriptive statistics, and top/bottom ranking—the core workflows for answering dataset questions. It lacks general range filtering or grouped aggregation, but these are minor gaps for the stated purpose.

Resources