Skip to main content
Glama

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Clipboardo 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.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral burden. It discloses the ordering behavior (highest/lowest) but omits important traits such as how ties are handled, whether non-numeric columns cause errors, what the return payload contains, and whether the result is simply a filtered list or includes ranking metadata.

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, front-loaded sentence that conveys the core operation and the natural-language intent without redundancy. Every word earns its place.

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 with no output schema and no annotations, the description gives enough to understand the basic operation, but it leaves gaps: no mention of limit semantics, default behavior, output shape, or edge cases. An agent could invoke it correctly but might misjudge boundary behavior or result format.

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 only 33%, so the description must compensate. It adds the key constraint that the column must be numeric, which is genuinely useful. However, it does not explain the limit parameter's role or the ascending default beyond what the schema's brief 'ascending' description states.

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 clear verb-resource relationship: it returns the highest or lowest rows of the dataset based on a numeric column, with the natural-language framing 'which is the most/least X'. This distinguishes it from row-fetch, search, stats, and column tools, though sibling differentiation is not explicit.

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 intended use case is implied clearly: use when you need the top or bottom rows ranked by a numeric column. However, there is no explicit guidance about when to prefer this over siblings like dataset_stats or dataset_search, and no exclusionary conditions.

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/5.0
Disambiguation5/5

Each tool has a clearly scoped function: schema, provenance, exact lookup, substring search, numeric summaries, top/bottom, and multi-value comparison. Even where dataset_row and dataset_search overlap conceptually, their descriptions make the distinction obvious.

Naming Consistency5/5

All tools share the consistent dataset_ prefix followed by a concise operation or noun. The naming is uniform, predictable, and easy to navigate.

Tool Count5/5

Seven tools is well-scoped for a single-dataset query server. Each tool covers a distinct query type without redundancy or unnecessary bloat.

Completeness5/5

For a read-only dataset exploration server, the surface is complete: schema discovery, provenance, exact lookups, free-text search, statistics, top/bottom rows, and comparisons. There are no obvious dead ends or missing operations for its stated purpose.

Resources