Skip to main content
Glama

Rank rows by a numeric column

dataset_top

The highest (or lowest) rows of the Clientvo 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.9/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, but it only states the basic ordering behavior. It does not disclose default sort order, how the limit is applied, tie-handling, whether the column must be strictly numeric, or what the return format looks like. This is a significant gap for a read tool without an output schema.

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, front-loaded sentence with a helpful explanatory quote. There is no filler, and it communicates the core operation efficiently, though the trailing dash and quote add slight stylistic complexity without harming clarity.

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?

Given no annotations, no output schema, and only 33% schema description coverage, the description is too minimal. It omits key operational details like the default sort order, the meaning of the limit parameter, and what kind of result is returned, making it incomplete for confident invocation.

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 coverage is only 33% (only 'ascending' has a description). The description adds meaning for the 'column' parameter by indicating it must be numeric, but it says nothing about 'limit' or its maximum value, and it does not clarify the default ordering beyond what the schema already states. It does not sufficiently compensate for the low schema coverage.

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 clearly states that the tool ranks rows of the Clientvo dataset by a numeric column and identifies the use case as 'which is the most/least X'. It is easy to distinguish from siblings like dataset_search or dataset_stats, though it does not explicitly name alternatives.

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 when to use it (when you need the highest or lowest rows by a numeric column) but provides no explicit guidance on when not to use it or how it compares to sibling tools like dataset_compare or dataset_row. It is usable context but leaves exclusion criteria unstated.

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 maps to a clear query type (schema, metadata, exact lookup, substring search, multi-value compare, stats, top-N) with only minor overlap between dataset_row and dataset_compare for single-value filtering. The examples in the descriptions help an agent choose correctly.

Naming Consistency5/5

All seven tools share the dataset_ prefix and use consistent snake_case with a noun/operation suffix (columns, compare, provenance, row, search, stats, top). This creates a predictable pattern that is easy to extend and select from.

Tool Count5/5

Seven tools is appropriate for a dataset query server: enough to cover common exploration tasks without being overwhelming. Each tool has a distinct role, so the count feels well-scoped rather than padded.

Completeness4/5

The set covers schema discovery, provenance, exact and fuzzy lookup, comparisons, numeric aggregates, and top/bottom queries — the core operations for a single dataset Q&A server. It lacks a direct 'count rows matching a filter' or distinct-values tool, but agents can work around those with existing tools.

Resources