Skip to main content
Glama

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Insurance by Profession 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.

  1. First observed

TDQS

B3.1/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 behavioral burden and says almost nothing: not how many rows are returned, not the tie-breaking behavior, not whether the column must be numeric (only implied), and not that the result is bounded. It does convey the descending-first direction, which is a small but real disclosure.

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?

A single front-loaded sentence with essentially no padding; the quoted 'which is the most/least X' tail adds intent rather than repeating the title. Tight and readable.

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

Completeness2/5

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

No output schema, no annotations, and thin parameter coverage, yet the description does not fill the gap: return shape, limit semantics, and default ordering are all unaddressed. For a ranking tool an agent could easily mis-size requests or misread results.

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 documented), so the description needs to compensate. It does imply the column must be numeric and describes the ascending/descending choice, but it never mentions the 'limit' parameter or its 1–50 cap, leaving two undocumented parameters.

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?

States a specific verb (rank/return highest or lowest) and resource (rows of the Insurance by Profession dataset by a numeric column), plus the intent 'which is the most/least X'. Clear on its own, but it never distinguishes itself from siblings like dataset_row or dataset_stats, so the boundary depends on the agent's inference.

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 example use case ('which is the most/least X') implies when this tool is appropriate, but there is no explicit when-to-use guidance, no exclusions, and no named alternative among the many dataset_* siblings for e.g. bottom-N, per-group, or aggregate queries.

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.

Resources