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 HardscapeDesk 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 full burden of behavioral disclosure. It transparently notes that grouping commas and currency symbols are parsed, and that non-numeric rows are excluded and counted. This gives the agent insight into edge-case handling. However, it does not state the output format (e.g., a JSON object with named fields) or behavior for empty columns, which would strengthen transparency.

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 core statistics list and places the additional handling details in a parenthetical. It is efficient and avoids redundancy, though the parenthetical is slightly dense. The structure is clear and easy to scan.

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 tool with one parameter and no output schema, the description covers the essential points: the dataset, the expected column type, the computed metrics, and special-case handling. It lacks an explicit statement about the return shape, but the list of statistics strongly implies a structured result. Minor gaps remain but the tool is largely self-explanatory.

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 schema provides only a generic 'column' parameter with no description (coverage 0%), so the description must add meaning. It does so by specifying that the column must be numeric and that formatted values (commas, currency) are handled. This goes beyond the schema and clarifies expected input semantics.

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 explicitly names the operation (summary statistics), the resource (a numeric column of the HardscapeDesk dataset), and the specific statistics computed (count, min, max, mean, median, sum). It also mentions handling of formatted numbers, which clearly differentiates it from sibling tools like dataset_row or dataset_top, which likely return raw rows or top values.

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 that the tool is used to obtain descriptive statistics for a numeric column, but it does not explicitly state when to prefer this over sibling tools like dataset_top or dataset_search, nor does it provide exclusion criteria (e.g., 'use dataset_row for individual records'). The context is clear enough for basic selection, but no alternatives are mentioned.

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

A4.1/5.0
Disambiguation5/5

Each tool targets a clearly distinct operation: schema inspection, provenance, exact lookup, substring search, multi-value comparison, numeric stats, and top/bottom ranking. No two tools appear to serve the same purpose.

Naming Consistency5/5

All tool names follow the same 'dataset_' prefix pattern followed by a simple noun or operation name (columns, compare, provenance, row, search, stats, top). This is highly consistent and predictable.

Tool Count5/5

Seven tools is a well-scoped set for a single-dataset query server. Each tool covers a distinct need without redundancy or bloat.

Completeness4/5

The surface covers schema discovery, data retrieval, search, comparison, statistics, extremes, and provenance. Minor gaps exist, such as no explicit way to retrieve all rows or generate distinct-value lists, but core query workflows are well supported.

Resources