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 Fitouto 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.9/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 and does well by disclosing key behaviors: grouping commas and currency are normalized, and non-numeric rows are excluded and separately counted. It does not cover return format or error behavior, but for a read-only statistical tool the main behavioral caveats 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 compact sentence that front-loads the computed metrics and uses a parenthetical to convey edge-case handling. There is no redundant wording; every clause adds information relevant to correct invocation.

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?

Given the tool's simplicity, one required parameter, and no nested schemas, the description is largely complete. It explains what is computed and how problematic rows are handled. It stops short of describing the exact output shape, but since no output schema exists, a brief note about return values would have made it fully complete.

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 defines a single string parameter named 'column' with 0% description coverage, so the description must compensate. It does by clarifying that the parameter refers to a numeric column and noting how formatting and non-numeric values are treated. It could be more explicit about exact column-name formatting or case sensitivity, but the core meaning is clear.

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 clearly identifies the operation: computing count, min, max, mean, median, and sum for a numeric column of the Fitouto dataset. It distinguishes itself from siblings like dataset_columns, dataset_search, and dataset_top by focusing on numeric summary statistics, though it does not explicitly name an alternative.

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 numeric columns and states that formatting is handled, which gives some contextual guidance. However, it does not explicitly explain when to prefer this over sibling tools like dataset_compare or dataset_search, nor does it list exclusions or prerequisites.

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

A4.1/5.0
Disambiguation5/5

Each tool targets a distinct operation: schema inspection, exact row lookup, substring search, value comparison, statistics, top/bottom ranking, and provenance. Although search, row, and compare all retrieve rows, their matching semantics are clearly different and unlikely to be confused.

Naming Consistency5/5

All tools follow the same predictable `dataset_<operation>` snake_case convention. The names consistently indicate which dataset capability they expose, making the tool surface easy to scan and remember.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool covers a meaningful query mode without unnecessary redundancy or overwhelming the agent.

Completeness5/5

The server covers the full range of operations needed to explore the Fitouto dataset: schema discovery, provenance, exact-match row retrieval, substring search, comparative queries, numeric statistics, and ranking. There are no obvious dead ends for the apparent read-only querying purpose.

Resources