Skip to main content
Glama

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Tickmarko 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 provided, the description carries the full burden of behavioral disclosure. It only states the core ranking action and mentions the ascending flag implicitly, but does not describe the output format, tie-breaking behavior, pagination limits, or that it is a read-only operation. The short phrase leaves many behavioral aspects ambiguous.

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 sentence, highly concise and front-loaded with the core purpose. There is no wasted text. However, it is so brief that it omits important details, so while it is efficient, it borders on under-specification. The structure is acceptable but could benefit from a second sentence on output or usage.

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 simple ranking tool with no output schema and no annotations, the description is too sparse. An agent cannot infer what the response looks like (full rows, column values, count), whether ties are included, or any edge-case behavior. The description covers the basic action but leaves critical context unaddressed.

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 low (33% - only 'ascending' has a description). The description adds a useful semantic hint that 'column' must be numeric, which is not in the schema. However, it does not explain 'limit' semantics (beyond schema min/max) or clarify how 'ascending' interacts with the ranking beyond the schema's own description. It partially compensates for the coverage gap but not sufficiently.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool ranks rows by a numeric column and returns the highest or lowest, with the illustrative phrase 'which is the most/least X'. This distinguishes it from siblings like dataset_stats (aggregates), dataset_search (matching), and dataset_row (single record). The verb 'rank' and resource 'rows' are 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 description implies use for top/bottom ranking queries ('most/least X') but provides no explicit when-to-use guidance or exclusions. It doesn't reference sibling tools or state when to prefer dataset_stats or dataset_search instead. The context is clear enough for a simple ranking task, but it lacks explicit routing.

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

Each tool has a clearly distinct purpose: schema inspection, row retrieval, search, comparison, top values, statistics, and provenance. The descriptions make the differences explicit, so an agent can confidently select the right tool.

Naming Consistency5/5

All tools follow a consistent 'dataset_' prefix with a descriptive noun or verb, such as dataset_columns, dataset_search, dataset_stats. The naming pattern is uniform and predictable.

Tool Count5/5

With 7 tools for exploring a single dataset, the scope is well-balanced. Each tool addresses a specific need without redundancy or bloat, fitting the server's purpose.

Completeness5/5

The tool surface covers schema discovery, exact lookup, substring search, value comparison, top/bottom extraction, statistical summaries, and provenance—everything needed for read-only dataset exploration. No obvious gaps exist.

Resources