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 DailyLogDesk 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 behavioral burden. It usefully discloses that grouping commas and currency are handled, and that non-numeric rows are excluded and counted. This gives meaningful insight into data-cleaning behavior beyond the basic 'compute stats' operation.

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 well-organized sentence that front-loads the operation, names the target dataset, and folds the important data-cleaning caveats into the same statement. There is no wasted text.

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 summary tool with no output schema, the description covers what the tool computes, what data it operates on, and how anomalies are handled. It does not spell out the exact output shape or error behavior, but this is a minor gap given the tool's simplicity.

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 says 'column' is a non-empty string, and description coverage is 0%. The description compensates by explaining that the column must be numeric and part of the DailyLogDesk dataset, and by describing how numeric formatting is normalized. It does not enumerate valid column names, but the single-parameter shape makes the meaning sufficiently clear.

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 names a specific operation (compute count, min, max, mean, median, sum) on a specific resource (a numeric column of the DailyLogDesk dataset). This clearly distinguishes it from sibling tools like dataset_row, dataset_search, or 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 makes the intended use clear: summarizing a numeric column. However, it never explicitly says when to prefer this over siblings, nor does it mention that it is the wrong choice for non-numeric or row-level tasks. Usage context is implied rather than 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

A3.9/5.0
Disambiguation4/5

Each tool has a clearly stated query mode, but several return rows from the same dataset with overlapping semantics (exact match, substring search, multi-value compare, top-N). An agent could sometimes confuse dataset_row and dataset_search, though the descriptions provide enough detail to disambiguate.

Naming Consistency5/5

All tools follow a consistent dataset_ prefix pattern with short, descriptive operation names. The naming convention is uniform and predictable across the entire set.

Tool Count5/5

Seven tools is a well-scoped size for a single-dataset querying server. Each tool covers a distinct access pattern without unnecessary duplication or bloat.

Completeness5/5

The toolset covers schema discovery, provenance attribution, exact row lookup, substring search, value comparison, numeric statistics, and top/bottom ranking. For a read-only dataset querying server, this is a complete surface with no obvious dead ends.

Resources