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 LPreportly 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, the description carries the behavioral burden and does a good job: it discloses that grouping commas and currency symbols are handled, and that non-numeric rows are excluded and counted. This is genuinely useful beyond the title and schema. It does not mention failure modes or return shape, but the core quirks are surfaced.

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 dense sentence that front-loads the computed statistics and follows with the key edge-case behaviors. Every clause earns its place; there is no fluff or repetition of the schema.

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 one-parameter tool with no output schema, the description is nearly complete: it states what statistics are returned and how messy numeric input is handled. A minor gap is the exact output shape and ambiguous phrasing around whether 'count' includes or excludes the non-numeric rows, but the overall context is sufficient for simple use.

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 only provides a string parameter named 'column', and description coverage is 0%. The description compensates by clarifying that the column must be numeric and by explaining how formatted numbers and non-numeric values are treated. This gives the agent enough semantic context to pass a valid column name.

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 together clearly define a summary-statistics tool for a numeric column, enumerating the exact outputs (count, min, max, mean, median, sum). This is specific enough to distinguish it from siblings like dataset_columns and dataset_row: the agent immediately knows it aggregates rather than lists or searches rows.

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 when the tool should be used: whenever an agent needs numeric summary statistics for a dataset column. However, it does not explicitly state when not to use it or mention an alternative, such as dataset_top or dataset_search, leaving some routing inference to the agent.

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

Most tools have clearly distinct purposes: schema, provenance, exact row lookup, text search, multi-value comparison, stats, and top-N. dataset_row and dataset_compare could be confused since both filter on column values, but compare explicitly handles multiple given values and ordering.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and use lowercase snake_case, making the pattern predictable. However, the second part mixes noun-style names (columns, provenance, row) with verb/action-style names (compare, search, stats, top), so it is not a uniform verb_noun convention.

Tool Count5/5

Seven tools is a well-scoped size for a single-dataset read-only server. Each tool provides a distinct mode of access or summary without unnecessary redundancy or bloat.

Completeness4/5

The set covers schema discovery, provenance, exact-value lookup, substring search, multi-value comparison, numeric statistics, and top/bottom rows. Minor gaps exist, such as no pagination or distinct-value listing, but most dataset exploration questions can be answered with the available tools.

Resources