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 Funnelvo 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

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden and does add value: it discloses that grouping commas and currency symbols are handled during parsing, and that non-numeric rows are excluded and counted. This is useful beyond what the schema provides. It does not cover edge cases like empty columns or nonexistent column names, but the disclosed parsing behavior is the main practical risk.

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?

A single, well-structured sentence: the statistics are front-loaded, and the parsing caveats are compactly placed in a parenthetical. Every element earns its place with no filler or redundancy.

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, the description is nearly complete: it enumerates the six computed outputs, which effectively conveys the return content despite the lack of an output schema. Minor gaps are how to discover valid column names and behavior when all rows are non-numeric or the column is missing, but these are minor at this complexity level.

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?

Schema coverage is 0%, so the description must compensate for the single parameter. It clarifies that the column should be numeric, but it does not explicitly state that 'column' is a column name or how to obtain a valid value (e.g., via dataset_columns). The description adds some meaning over the bare string schema but leaves the parameter semantics partly to inference.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific resource ('numeric column of the Funnelvo dataset') and the exact computation performed (count, min, max, mean, median, sum). The enumerated statistics clearly distinguish it from siblings like dataset_search and dataset_row, although no sibling is named explicitly.

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?

Usage context is implied: the tool is for computing summary statistics on a numeric column. However, there is no explicit when-to-use guidance, no exclusions, and no mention of alternatives such as dataset_top or dataset_columns for discovering valid columns.

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 clear role, but dataset_row and dataset_compare both retrieve rows by column equality, and dataset_search adds another filter-based lookup. The descriptions distinguish exact vs. multi-value vs. substring matching well enough that an agent can choose correctly.

Naming Consistency4/5

All tools share a consistent dataset_ prefix, making the family obvious. However, the second part mixes nouns (columns, stats, row), verbs (compare, search), and adjectives (top), so the pattern is not a uniform verb_noun convention.

Tool Count5/5

Seven tools is well-scoped for a read-only dataset exploration server. Each tool covers a distinct query mode or metadata need without redundancy or excessive surface area.

Completeness5/5

The set covers schema discovery, provenance, exact lookup, substring search, multi-value comparison, summary statistics, and top/bottom ranking. This is a complete surface for the stated purpose of interacting with the Funnelvo dataset.

Resources