Look a row up by an exact key
dataset_rowThe rows of the Asbestos Survey Cost 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 Asbestos Survey Cost 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 supplied, so the description carries the full burden, and it does disclose two real behavioral traits: matching is exact and case-insensitive, and the target dataset is fixed. It says nothing about result cardinality, limits, or what happens with an unknown column name, leaving meaningful gaps for a no-annotation tool.
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 key constraint (exact, case-insensitive match) is front-loaded before any elaboration. The phrasing is slightly awkward but wastes nothing.
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?
With no output schema and no annotations, the description should explain what a matching row looks like and whether multiple rows can be returned. Instead it stops at the matching predicate, leaving the return shape and cardinality entirely undocumented for a lookup tool.
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%, with only minLength constraints on column and value. The description establishes the column/value relationship and the exact-match semantics, but gives no hint about valid column names (e.g. that dataset_columns enumerates them) or value format, so it does not compensate for the coverage gap.
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 states a specific operation (return rows where a column equals a value exactly) against a named dataset, which is clearer than the bare name. It does not, however, differentiate itself from siblings like dataset_search or dataset_top, which invite similar lookups.
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 explicit guidance on when this tool is preferable to dataset_search or dataset_top, nor any mention of prerequisites or exclusions. The phrase 'equals a value exactly' implies an exact-match niche, but the agent must infer that this is the delimiter versus a fuzzy search.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.