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

A3.9/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 meaningful behavior: grouping commas and currency are handled, and non-numeric rows are excluded and counted. It does not describe the return structure, but for a read-only statistics tool the disclosed preprocessing behavior is valuable.

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 entire description is one front-loaded sentence: the statistic names come first, followed by a compact parenthetical covering data-cleaning behavior. Every clause earns its place with no filler.

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 single-parameter, no-output-schema tool, the description covers what the tool computes, which column it applies to, and how dirty data is handled. It stops short of specifying the exact response shape or behavior for a fully non-numeric column, but those are minor gaps.

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 input schema only defines column as a non-empty string, and schema description coverage is 0%. The description compensates by explaining that the column must be numeric and that comma/currency formatting is normalized, adding real semantic meaning to the parameter.

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 clearly identifies the operation (computing count, min, max, mean, median and sum) and the resource (a numeric column of the RoughInDesk dataset). It does not explicitly differentiate from siblings like dataset_top or dataset_compare, but the listed statistics make the tool's purpose unambiguous.

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 this tool is for numeric columns and that non-numeric rows will be excluded, giving the agent a sense of when it applies. It does not name alternatives or state when to prefer dataset_top or dataset_compare, so the guidance is implied 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.7/5.0
Disambiguation4/5

Tools are mostly distinct, with clear descriptions for schema, provenance, stats, and top-N queries. Some overlap exists among row retrieval tools (dataset_row, dataset_compare, dataset_search), but descriptions clarify exact match, multi-value match, and substring search.

Naming Consistency3/5

All tools share the consistent 'dataset_' prefix, but the second part mixes nouns (columns, provenance, row, stats), verbs (compare, search), and an adjective (top), so the naming pattern is not uniform.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset exploration server, covering schema, metadata, lookup, search, comparison, statistics, and top/bottom queries without unnecessary bloat.

Completeness5/5

The tool set covers the full range of expected dataset operations: schema inspection, provenance, exact row retrieval, substring search, multi-value comparison, numeric stats, and ranking. No obvious gaps for read-only dataset analysis.

Resources