Skip to main content
Glama

site

Rank rows by a numeric column

dataset_top

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

With no annotations, the description carries the full burden of behavioral disclosure. It states the core sorting behavior but omits important details such as default limit if not specified, handling of non-numeric values in the column, and the structure of the returned rows. This is thin for a tool with no annotation support.

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 that front-loads the core action and is free of fluff. The parenthetical example is slightly informal but does not detract from clarity; it remains concise and structured.

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 3 parameters and no output schema, the description is adequate for basic invocation. However, it omits the default limit value and does not describe the return format, which an agent might need for correct handling. Missing these details leaves it incomplete.

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% (only 'ascending' has a description). The description adds that 'column' must be numeric, but it does not clarify 'limit' semantics or default, nor does it elaborate on how 'ascending' interacts beyond the schema. It fails to compensate for the undocumented parameters.

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?

Clearly states it ranks rows of the Deflectvo dataset by a numeric column, returning highest or lowest. The phrase 'which is the most/least X' makes the intent obvious and distinguishes it from siblings like dataset_row (single row) and dataset_stats (aggregates).

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?

Usage is implied by the purpose—use this to get top/bottom rows by a numeric column—but there is no explicit guidance on when to choose this over alternatives like dataset_stats or dataset_search. No exclusions or alternative references are provided.

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

Tools are mostly distinct: columns, provenance, stats, and top are clearly separate. There is some overlap between dataset_compare, dataset_row, and dataset_search for retrieving rows, but the descriptions clarify exact vs substring vs multi-value filtering, reducing confusion.

Naming Consistency4/5

All tools share the 'dataset_' prefix, providing strong consistency. The second part mixes nouns (columns, provenance, row, stats, top) and verbs (compare, search), which is a minor deviation but still predictable and readable.

Tool Count5/5

With 7 tools, the server is well-scoped for a dataset querying purpose. Each tool addresses a distinct query pattern (schema, provenance, search, exact match, comparison, stats, top/bottom) without redundancy or bloat.

Completeness4/5

The tool surface covers the main query types needed for exploring a dataset: schema, provenance, search, filter, stats, and ranking. Missing a 'list all' or 'distinct values' tool, but for typical analytical questions the coverage is strong and no dead ends are apparent.

Resources