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 Walkvo 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.8/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 behavioral disclosure burden. It does well by noting that grouping commas and currency are handled and that non-numeric rows are excluded and counted, which are non-obvious data-cleaning behaviors. It does not mention return structure or empty-column behavior, but the listed statistics largely imply the output.

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 dense sentence delivers the operation, resource, and important edge-case handling without wasted words. The parenthetical qualifiers earn their place because they change how an agent should interpret inputs and results.

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 is nearly complete: it names the input, the output statistics, and the key data-cleaning behavior. It lacks explicit error handling or return-format details, but those are minor for this simplicity level.

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 only defines 'column' as a non-empty string, and the description does not name the parameter explicitly. However, it adds real meaning by specifying that the column must be numeric and that formatting/currency quirks are handled, which helps the agent choose an appropriate value.

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 states the operation (computing count, min, max, mean, median, sum) and the resource (a numeric column of the Walkvo dataset). It does not explicitly differentiate from siblings, but the aggregate-statistics nature is self-evident against row/search/top tools.

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?

Usage context is implied: an agent would call this when it needs summary statistics for a numeric column rather than row-level or search operations. No explicit when/when-not guidance or named alternatives are provided, leaving the choice to inference.

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

Each tool targets a distinct query type (schema, exact match, substring search, multi-value comparison, stats, top/bottom, provenance), but dataset_row and dataset_compare overlap for single-value exact matches, and dataset_columns' provenance banner overlaps somewhat with dataset_provenance.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case, but suffixes mix nouns (columns, provenance, row, stats) with verbs (compare, search) and an adjective (top), so the pattern isn't as uniform as a strict verb_noun convention.

Tool Count5/5

Seven tools is a well-scoped set for read-only dataset exploration; each operation (schema, lookup, search, compare, stats, top, provenance) earns its place.

Completeness4/5

Covers the core dataset workflows: schema, exact and fuzzy lookup, comparisons, numeric summaries, and attribution. Minor gaps like grouped aggregations or multi-condition filters are absent but not essential for the stated purpose.

Resources