Skip to main content
Glama

Look a row up by an exact key

dataset_row

The rows of the Exitvo 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

A4/5.0
Behavior3/5

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

With no annotations, the description must carry behavioral disclosure. It does reveal that matching is case-insensitive and that the tool returns rows, which are useful behaviors. However, it does not mention potential multiple matches, no-match handling, or any read-only guarantee. The description is thin on behavioral detail beyond these points.

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 sentence, front-loaded with the core purpose. Every word adds value: 'rows', 'column equals a value', 'exactly', 'case-insensitive'. There is no redundancy or fluff, making it highly efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple lookup tool with no output schema and no annotations, the description adequately covers the essential function: returning matching rows. It specifies the matching rule and case sensitivity. It could mention what happens with no match or multiple matches, but for a basic row lookup, the description is largely sufficient.

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 does map 'column' and 'value' to the comparison operation: 'where a column equals a value'. This adds meaning beyond the schema's bare type constraints. However, it does not clarify whether 'column' is a name, index, or specific format, leaving some ambiguity.

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's function: retrieving rows where a specified column equals a given value exactly, with case-insensitivity. This distinguishes it from siblings like dataset_search (likely fuzzy) and dataset_top (top rows). The verb-resource structure is specific and unambiguous.

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

Usage Guidelines4/5

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

The description implies when to use this tool: for exact, case-insensitive matching. While it does not explicitly name alternatives or state when not to use it, the specificity of 'exactly' and 'case-insensitive' strongly signals its niche relative to siblings. This is clear contextual guidance, though it lacks explicit exclusions.

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 has a distinct role: schema, provenance, exact row lookup, substring search, multi-value comparison, numeric stats, and top/bottom rows. The only minor overlap is between dataset_row and dataset_compare, but their descriptions clearly separate single-exact-match from multiple-value in-order filtering.

Naming Consistency4/5

All tools share the consistent 'dataset_' prefix with short, readable suffixes. Most suffixes are nouns (columns, row, stats, top), while 'compare' and 'search' read as verbs, a small grammatical deviation from an otherwise uniform pattern.

Tool Count5/5

Seven tools is well-scoped for a dataset exploration server. Each tool covers a meaningful query operation—metadata, lookup, search, aggregation, sorting—without redundancy or bloat.

Completeness4/5

The surface covers core dataset workflows: understanding schema, citing provenance, finding rows by exact match or substring, comparing values, computing statistics, and identifying extremes. A minor gap is the lack of distinct-value listing or pagination, but the main use cases are well supported.

Resources