Skip to main content
Glama

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Rapportvo 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

B3.2/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure, and it only states that the tool returns the highest or lowest rows. It does not mention default limits, handling of non-numeric columns, tie-breaking, or what fields the returned rows contain. The 'numeric column' hint is useful but incomplete.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single efficient sentence that front-loads the core purpose and includes a user-oriented framing. It is not bloated, though it could integrate a bit more detail about defaults without becoming verbose.

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 ranking tool, the description covers the essential idea and names the key column parameter type. However, with no output schema and no annotations, it should ideally clarify the default limit, the meaning of 'ascending' defaults, and what the returned rows include. It is adequate but has noticeable gaps.

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% (only 'ascending' is described), so the description must compensate. It does add meaning by specifying that the column must be numeric and explains highest/lowest conceptually, but it leaves 'limit' semantics and the default ordering behavior to the schema, which is only partially documented.

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 states a specific action ('rank rows') and a resource ('by a numeric column') and even frames it as a natural-language question ('which is the most/least X'). This distinguishes it from sibling tools like dataset_search or dataset_stats, though it does not name an alternative 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?

The question format 'which is the most/least X' suggests when the tool is appropriate, giving clear context for ranking use cases. However, it does not explicitly say when not to use it or mention alternatives such as dataset_stats or dataset_search, leaving some inference to the agent.

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

Most tools are clearly distinct query modes, but dataset_columns includes a provenance banner that slightly overlaps with dataset_provenance, and dataset_row/dataset_compare both support exact-value filtering on a column. These boundaries are manageable but not perfectly crisp.

Naming Consistency4/5

All tools share the dataset_ prefix and snake_case style, which is predictable and consistent. However, the second part mixes verbs (compare, search), nouns (columns, provenance, row), and adjectives/nouns (top, stats), so there is no uniform verb_noun pattern.

Tool Count5/5

Seven tools is well-scoped for a single-dataset query server. Each tool covers a distinct type of data access or metadata need without feeling padded or redundant.

Completeness4/5

The surface covers schema, provenance, exact lookup, substring search, multi-value comparison, statistical summaries, and top/bottom ranking for the dataset. It lacks generalized arbitrary filtering or full row pagination, but the core read-only dataset workflow is well covered.

Resources