Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the DoorsetBook dataset where a column equals a value exactly (case-insensitive).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
valueYes
columnYes

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 must carry behavioral disclosure. It usefully notes exact equality and case-insensitivity, but it does not clarify whether one row or many rows are returned, what happens on no match, or whether there are result limits. The title's singular 'a row' versus the description's plural 'rows' adds ambiguity.

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?

The description is a single compact sentence with no filler. The core semantics are front-loaded, and the case-insensitive qualifier adds value without unnecessary length.

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 two-parameter lookup, this is minimally viable: it names the dataset, the query mechanism, and matching behavior. But with no output schema and no annotations, it should clarify multiplicity, no-match behavior, and any limits. The row/rows ambiguity leaves a notable gap.

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 coverage is 0%, so the description must compensate. It explains that 'column' is a dataset field and 'value' is the comparison value, and adds the important case-insensitive exact-match behavior. However, it does not enumerate valid columns, give examples, or explain value format beyond the schema's string type.

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 identifies the resource (DoorsetBook dataset) and the matching semantics (column equals value exactly, case-insensitive), which distinguishes it from dataset_search. It relies on the title for the explicit verb 'look up', but the intent is unambiguous.

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 phrase 'equals a value exactly' implies this is for exact-match lookups rather than broad searching, so usage is somewhat evident. However, the description does not name alternatives like dataset_search or state when not to use this tool.

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

Each tool has a distinct primary purpose—schema, provenance, exact lookup, multi-value comparison, search, stats, and top rows. The main ambiguity is between dataset_row and dataset_compare, since both retrieve rows by column value, though dataset_compare is specifically for ordered multi-value comparisons.

Naming Consistency4/5

All tools share the consistent dataset_ prefix and snake_case naming, making them easy to group. However, the suffix style is mixed: some are nouns (columns, row, stats), some are verbs (compare, search), and one is an adjective (top), which is a minor deviation from a fully uniform verb_noun pattern.

Tool Count5/5

Seven tools is well-scoped for a dataset query server. Each tool covers a meaningful query need—schema discovery, provenance, exact lookup, comparison, search, statistics, and ranking—without unnecessary bloat or missing core access patterns.

Completeness4/5

The tool surface covers the main ways to interact with the DoorsetBook dataset: schema, metadata, exact and fuzzy lookup, comparisons, aggregates, and top/bottom rows. Minor gaps exist, such as no explicit pagination for large result sets or numeric range filtering, but common questions are well supported.

Resources