Skip to main content
Glama

site

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Sudslane 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 must carry this burden; it does convey the core behavior (highest/lowest rows, numeric column). It does not mention behavior like non-numeric column handling or whether results are limited beyond the schema's limit property, but the operation is clearly a read-only ranking and the title reinforces that.

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 communicates the operation, dataset, and use case with no filler. The conversational quote earns its place by clarifying the intended question type.

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 low-complexity tool, the schema covers required column, limit range, and default direction, while the description adds numeric semantics and the most/least framing. It is adequate but not complete: with no output schema or annotations, it leaves return-value shape and edge cases (non-numeric column, limit effect) to inference.

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 the important 'numeric column' constraint and relates ascending to highest/lowest. It does not explain the limit parameter or its effect beyond the schema's min/max values, leaving a partial gap.

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 that the tool returns the highest or lowest rows of the Sudslane dataset by a numeric column, which is a clear verb+resource+scope. The quoted 'most/least X' reinforces the ranking purpose, but it does not explicitly contrast with siblings such as dataset_search or dataset_stats.

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 quoted 'which is the most/least X' implies a ranking use case and gives the agent a way to map questions to this tool. However, there is no explicit statement of when to choose dataset_top over sibling tools or when not to use it.

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

Each tool targets a distinct mode: schema, provenance, exact equality, substring search, multi-value comparison, statistics, and top-N ranking. The only mild overlap is between dataset_row, dataset_search, and dataset_compare, but their descriptions clearly separate exact match, contains, and ordered value-set matching.

Naming Consistency4/5

All tools share a consistent dataset_ prefix and snake_case convention, making the family instantly recognizable. The suffixes are a mix of nouns and verbs, but the pattern is still predictable and readable.

Tool Count5/5

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

Completeness5/5

The set covers schema discovery, provenance, exact lookup, search, comparison, statistics, and top/bottom ranking. For a read-only dataset tool, this covers the core querying workflows with no obvious dead ends.

Resources