Skip to main content
Glama

Rank rows by a numeric column

dataset_top

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

C2.6/5.0
Behavior2/5

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

With no annotations provided, the description carries the full disclosure burden, but it only conveys the core ordering behavior (highest or lowest by numeric column). It does not address tie handling, null values, behavior for non-numeric columns, or whether full rows or single values are returned. The 'ascending' default is only visible in the schema, not the description.

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

Conciseness3/5

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

The description is compact and the core operation is front-loaded. However, the sentence is a fragment and the embedded 'Taxyearvo' dataset reference reads as environment-specific hardcoding that may confuse an agent. The quoted use case at the end is a worthwhile addition that earns its place.

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?

For a tool with no annotations and no output schema, the description omits the return shape (full rows vs. values only) and failure behavior for non-numeric columns. The required parameter is adequately constrained ('numeric column'), so an agent can make a first call, but nothing explains defaults or edge cases. A sentence on return format and ordering defaults would complete it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/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 should compensate. It adds one useful constraint — the column must be numeric — but says nothing about the 'limit' parameter, whose semantics are left to inference from its name and schema bounds. The 'ascending' parameter is already adequately documented by the schema's own description.

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 concrete operation: returning the highest or lowest rows of a dataset by a numeric column, framed as 'which is the most/least X.' This distinguishes it from siblings like dataset_stats (aggregation), dataset_row (single row), and dataset_search (matching). Clarity is dented by the hardcoded 'Taxyearvo' dataset name and a sentence-fragment construction with no main verb.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to choose this tool over sibling tools such as dataset_row, dataset_stats, or dataset_search. The quoted use case ('which is the most/least X') is essentially a restatement of purpose, not a selection rule. No prerequisites, exclusions, or alternative conditions are given.

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

Each tool targets a distinct data-access operation: schema intro, provenance, exact lookup, substring search, value comparison, statistics, and extreme rows. dataset_compare and dataset_row are somewhat similar in that both filter on column values, but their descriptions clarify the multi-value ordered behavior versus exact equality.

Naming Consistency5/5

All tools share a consistent dataset_ prefix and lowercase snake_case naming style, making the set predictable. Although the names are nouns rather than verbs, the convention is uniform and easy to infer.

Tool Count5/5

Seven tools is a well-scoped size for a dataset-focused MCP server. Each tool addresses a distinct query or metadata need without excessive overlap or unnecessary bloat.

Completeness4/5

The surface covers the main dataset operations: schema, provenance, row lookup, text search, multi-value comparison, numeric stats, and top/bottom rows. Minor gaps like range filtering, grouping, or paginated full scans exist but most typical questions about this dataset can be answered.

Resources