Skip to main content
Glama

site

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Footfally dataset by a numeric column — "which is the most/least X".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
columnYes
ascendingNotrue for the lowest first; default highest first

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose the core behavior—returning ranked rows by a numeric column—and implies a read-only query. It does not mention default ordering, handling of non-numeric columns, tie behavior, or output structure, leaving partial transparency.

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 one front-loaded sentence with a useful query pattern and no wasted words. It avoids repeating schema details and conveys the essential intent efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple three-parameter tool, the description plus schema is largely sufficient for selecting and invoking it. The absence of an output schema and annotations makes the lack of explicit return-format, default-limit, and read-only confirmation a noticeable gap, but not a blocking one.

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 description coverage is only 33%, so the description must compensate. It adds meaning by specifying that the column must be numeric and that the result is ordered highest or lowest, which maps to the ascending parameter. The limit parameter is not explained in the description, though its name and schema constraints make it partly self-evident.

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: returning the highest or lowest rows of the dataset by a numeric column, framed as 'which is the most/least X'. This distinguishes it from siblings like dataset_stats or dataset_row, though it does not explicitly name a contrasting sibling.

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 'which is the most/least X' phrasing implies the intended use case, and the focus on rows by numeric column separates it from column/stats/search tools. However, there is no explicit when-not-to-use guidance or named alternative, so the usage guidance is mostly inferred 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 targets a distinct retrieval mode: schema, provenance, exact match, multi-value comparison, substring search, stats, and top/bottom rows. The main ambiguity is between dataset_row and dataset_compare, since both filter by exact column values, and dataset_columns mentions provenance while a dedicated provenance tool exists.

Naming Consistency5/5

All tools share the dataset_ prefix and use clear, consistent nouns describing their function: columns, compare, provenance, row, search, stats, top. There is no mixing of naming conventions or vague verb-based names.

Tool Count5/5

Seven tools is well-scoped for a single-dataset exploration server. Each tool has a distinct role and the set feels neither bloated nor thin.

Completeness4/5

The tool surface covers schema discovery, provenance/attribution, exact lookup, fuzzy search, comparisons, numeric summaries, and top/bottom ordering. A minor gap is the lack of a full-table or sampling tool, but core dataset exploration workflows are well supported.

Resources