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 EOR Compass 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 provided, the description properly discloses key behavioral details: grouping commas and currency symbols are handled, and non-numeric rows are excluded and counted. This goes beyond the title and helps set expectations about data cleaning behavior. It does not cover edge cases like empty columns or invalid column names, but the disclosed quirks are significant and 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 description is a single compact sentence that front-loads the core statistics and then adds important caveats. Every phrase contributes meaning, and there is no filler or redundant repetition of the tool name or title. The structure is efficient 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 simple one-parameter tool with no output schema, the description provides enough context to understand what the tool returns, especially since it explicitly lists the computed values. It also covers the relevant preprocessing behavior. Minor gaps such as error handling for non-numeric or nonexistent columns prevent a perfect score, but the description is largely complete.

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 string with minLength 1, and schema description coverage is 0%, so the description must carry meaning. The description does add that the column must be numeric and belong to the EOR Compass dataset, which is useful. However, it does not provide examples, valid column name formats, or point to dataset_columns for discovering available 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 clearly specifies a concrete operation: computing summary statistics for a numeric column of the EOR Compass dataset. It enumerates the exact statistics (count, min, max, mean, median, sum), making the tool's purpose unmistakable. This also differentiates it from siblings like dataset_row, dataset_search, and dataset_top.

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 the tool should be used when summary statistics are needed for a column, and the name 'dataset_stats' reinforces this. However, it does not explicitly mention when not to use it, such as relying on dataset_columns for schema information or dataset_top for ranked values. The usage context is clear but no exclusions or alternatives are stated.

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 has a distinct purpose: dataset tools handle data exploration (columns, compare, row, search, stats, top) while enquiry tools handle the submission workflow (describe, fields, submit). No overlaps or ambiguous functions.

Naming Consistency5/5

Names follow a consistent pattern with clear prefixes (dataset_ and enquiry_) and action-oriented suffixes (columns, compare, row, search, stats, top, describe, fields, submit). The convention is uniform across all tools.

Tool Count5/5

With 10 tools, the set is well-scoped for a site offering data exploration and enquiry submission. It covers both core domains without unnecessary bloat or missing essential functions.

Completeness5/5

The dataset tools cover metadata (columns, provenance), lookup (row, search), aggregation (stats, top), and comparison (compare). The enquiry tools cover description (describe), input schema (fields), and submission (submit). The workflow is complete with no dead ends.

Resources