Look a row up by an exact key
dataset_rowThe rows of the Taxooor 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 Taxooor dataset where a column equals a value exactly (case-insensitive).
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | ||
| column | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It says 'rows' (plural) implying multiple matches, but gives no information on result limits, pagination, ordering, behavior when the column does not exist, or that this is a non-mutating read. For a tool with zero annotation coverage this is a significant gap.
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?
A single sentence with no filler and the distinguishing qualifier ('exactly') front-loaded alongside the resource. It is efficient, though arguably terse enough to omit useful detail rather than being optimally structured.
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?
For a two-parameter lookup with no output schema and no annotations, an agent still lacks the return shape (what fields a row contains) and any limits or failure behavior. The core matching semantics are covered, so it is minimally adequate but not complete.
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?
Schema description coverage is 0%, so the description must compensate. It references both parameters implicitly (column, value) and adds the meaningful detail that matching is exact and case-insensitive, but it never clarifies whether case-insensitivity applies to the column name as well, nor how string values interact with non-text columns.
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?
States a specific operation (look up rows where a column equals a value) and the key qualifier 'exactly (case-insensitive)', which implicitly separates it from the fuzzy-matching dataset_search sibling. It does not name or contrast any sibling explicitly, so the differentiation is left to inference.
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?
The exact-equality wording implies the tool is for precise key lookups rather than exploratory or partial matching, which is usable implied guidance. However, there is no explicit when-to-use statement, no mention of when to prefer dataset_search/dataset_stats, and no prerequisites or error conditions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.