Skip to main content
Glama

site

Look a row up by an exact key

dataset_row

The rows of the Retainvo 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.4/5.0
Behavior3/5

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

With no annotations, the description carries the full disclosure burden. It does usefully disclose exact equality and case-insensitivity, but it does not state whether the result is a single row or all matching rows, how no-match results behave, or whether the operation is read-only.

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 title and single-sentence description are compact, with the most important qualifier ('exactly', 'case-insensitive') front-loaded. The grammar is slightly awkward, but there is no filler or redundant material.

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?

The tool has no output schema and no annotations, so the description is the sole source of behavior. It defines the match predicate well but leaves out return cardinality and no-match behavior, which an agent would need to confidently use the tool correctly.

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 description coverage is 0%, so the description must compensate. It implicitly explains that 'column' is the dataset field to match and 'value' is the exact comparison value, and it adds the case-insensitivity detail. It does not explicitly walk through each parameter, but the schema already constrains both to required non-empty strings.

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 title gives a clear verb and resource ('Look a row up'), and the description sharpens the semantics to exact, case-insensitive equality on a column. It does not explicitly name a sibling to differentiate from, and the singular 'a row' vs plural 'the rows' creates a slight definitional ambiguity.

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 phrasing 'exact key' implies this is the precise-lookup tool rather than a broader search or comparison, giving an agent some contextual signal. However, it never names dataset_search or dataset_compare as alternatives, nor states 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.8/5.0
Disambiguation4/5

Tools are mostly distinct: columns, provenance, stats, and top handle schema, metadata, aggregates, and sorted rows, while row, compare, and search retrieve rows with clearly different matching semantics. Row and compare could be confused (exact vs any-of) but the descriptions make the distinction explicit.

Naming Consistency4/5

All tools share the 'dataset_' prefix and snake_case, giving a uniform and predictable family. However, the second element mixes nouns (columns, provenance, row, stats) with verbs (compare, search, top), so it is not a strict verb_noun pattern.

Tool Count5/5

Seven tools is within the ideal range and each tool covers a distinct dataset querying capability. There is no redundancy or bloat, and every tool earns its place for the server's narrow purpose.

Completeness5/5

The set covers schema discovery, provenance attribution, exact and fuzzy row retrieval, numeric statistics, and top-N ranking. For a read-only dataset exploration server, there are no obvious missing operations or dead ends.

Resources