Look a row up by an exact key
dataset_rowThe rows of the Reputzo dataset where a column equals a value exactly (case-insensitive).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| column | Yes |
dataset_rowThe rows of the Reputzo dataset where a column equals a value exactly (case-insensitive).
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| column | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the behavioral burden. It does disclose one non-obvious behavior: matching is exact but case-insensitive, which is valuable. However, it does not state whether the result is a single row or multiple rows, what the output contains, error behavior, or whether this is explicitly read-only. The title implies a read operation, making this minimally viable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of about 16 words with no filler, repetition, or irrelevant detail. The core operation and the key case-insensitive qualifier are immediately visible. This is appropriately sized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has two parameters, no annotations, and no output schema, so the description must cover the essentials. It explains the lookup semantics but leaves the return structure ambiguous: 'rows' suggests multiple results, yet the title says 'a row,' and no-match behavior is unaddressed. For a simple lookup tool this is a noticeable but not severe gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides only parameter names and minLengths, and description coverage is 0%, so the description must compensate. It does connect the two parameters meaningfully by explaining that a column is compared to a value exactly and case-insensitively. It does not enumerate valid column names or explain result shape, but for two simple string parameters this is adequate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly defines the tool's function: returning rows from the Reputzo dataset where a column equals a value exactly. The exact-match and case-insensitive qualifiers distinguish it from broader siblings like dataset_search, and the title supplies the missing 'look up' verb. It is specific but not phrased as a complete imperative sentence.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance about when to use this tool rather than dataset_search, dataset_top, or other siblings. The exact-match phrasing implies it is for precise key lookups, but no explicit when-to-use or when-not-to-use guidance is provided, leaving selection to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Most tools are clearly distinct (schema, provenance, stats, top), but dataset_row and dataset_compare can be confused since both filter by column values — the exact vs. multiple-values distinction is subtle, though search is clearly different with substring matching.
All tools follow the dataset_ prefix with a clear noun (columns, compare, provenance, row, search, stats, top), making the naming pattern perfectly consistent and predictable.
Seven tools is well-scoped for querying a single dataset, covering schema, content, search, comparison, statistics, ranking, and provenance without unnecessary bloat.
The surface covers all common dataset query operations (schema, lookup, filtering, search, stats, ordering, provenance), but there is no tool for aggregating by groups or listing dataset versions, which are minor gaps.