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 Mandatzo 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 full burden. It discloses key behaviors: grouping commas and currency are handled, and non-numeric rows are excluded and counted. This adds value beyond the schema. It does not specify the return format or error handling, but for a simple stats tool, the disclosed behaviors are significant.

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, front-loaded sentence that lists the statistics first, then adds the data-handling notes. No unnecessary words or repetition. It is concise and effective.

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 tool with one parameter and no output schema, the description covers the main points: what it computes and how it handles data quirks. It could mention the return format (e.g., a JSON object with those fields) or error behavior, but it is sufficient for an agent to invoke it correctly in most cases.

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?

Schema description coverage is 0%, so the description must compensate. It clarifies that the 'column' parameter refers to a numeric column of the dataset, adding meaning beyond the plain string type. It does not specify case sensitivity or exact matching, but given a single parameter, it provides adequate context.

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 states a clear verb (compute summary statistics) and resource (a numeric column of the Mandatzo dataset), listing specific statistics (count, min, max, mean, median, sum). This distinguishes it from siblings like dataset_row or dataset_search, which handle raw data retrieval, so an agent can immediately identify its purpose.

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 usage for numeric column analysis but does not explicitly state when to use this tool over siblings (e.g., 'use for summary statistics, not raw row access'). No alternatives or exclusions are mentioned, leaving some inference to the agent, though the purpose is clear.

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

Most tools have clearly distinct purposes: schema, provenance, exact lookup, substring search, multi-value comparison, stats, and top/bottom. The only mild overlap is among dataset_row, dataset_compare, and dataset_search, but their matching semantics are different enough to avoid serious confusion.

Naming Consistency4/5

All tools share the consistent dataset_ prefix and use short, descriptive names like search, stats, and compare. Minor deviations exist because dataset_columns, dataset_provenance, and dataset_row are nouns rather than verb-led names, but the overall pattern remains predictable.

Tool Count5/5

Seven tools is a well-scoped set for a single-dataset query server. Each tool addresses a different common question type, and none feels redundant or excessive.

Completeness4/5

The toolkit covers schema discovery, provenance, exact and fuzzy row lookup, comparisons, numeric statistics, and top/bottom queries. It lacks some advanced capabilities like arbitrary numeric filtering or group-by aggregation, but the core needs for querying the Mandatzo dataset are well covered.

Resources