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 Clauselane 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.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavior disclosure. It reveals key parsing behaviors: grouping commas and currency symbols are handled, and non-numeric rows are excluded and counted. This gives meaningful insight into how messy data is processed, though it stops short of describing error cases or exact response structure.

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, efficient sentence that front-loads the computed metrics before adding parenthetical parsing details. Every element earns its place; there is no filler, repetition, or irrelevant context.

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, no annotations, and no output schema, the description covers the essential inputs, the expected column type, parsing behavior, and the list of results. The metrics list effectively serves as a return contract, though the exact JSON response format is not specified.

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 defines 'column' only as a non-empty string with no property description, so schema description coverage is 0%. The description compensates by specifying that the parameter refers to a numeric column in the Clauselane dataset and by explaining how the column values are parsed, adding critical meaning the schema lacks.

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 title and description clearly state the tool computes summary statistics (count, min, max, mean, median, sum) for a numeric column of the Clauselane dataset. The specific list of metrics and the explicit resource distinguish it clearly from sibling tools like dataset_columns or dataset_top, which serve different purposes.

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 is for analyzing numeric columns by mentioning 'numeric column' and explaining how non-numeric rows are handled. However, it does not explicitly state when to use this tool over alternatives, nor does it provide exclusions or prerequisites, leaving routing mostly 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.9/5.0
Disambiguation4/5

Most tools are clearly separated by operation: schema, provenance, exact lookup, search, stats, top, and comparison. Dataset_row and dataset_compare overlap somewhat for exact-value lookups, but their intended use cases are mostly distinguishable.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case convention, which creates a strong pattern. However, the suffix mixes nouns (columns, row, stats) and verbs (compare, search), so it is not a fully consistent verb_noun scheme.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool serves a distinct read/query need without unnecessary bloat or overlap.

Completeness5/5

The set covers schema discovery, provenance, exact lookup, fuzzy search, numeric statistics, top/bottom values, and category comparisons. For a read-only dataset querying purpose, there are no obvious missing operations.

Resources