Look a row up by an exact key
dataset_rowThe rows of the Coshhvo 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 Coshhvo 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?
No annotations are present, so the description carries the burden. It discloses case-insensitive exact matching, a useful behavioral trait. However, it leaves ambiguity between title's singular 'a row' and description's plural 'rows', and does not state behavior for multiple matches or no match.
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 redundant information. The exact-match scope is front-loaded and the case-insensitive detail is included compactly.
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 query this is largely usable: an agent can infer the call parameters and the return is 'rows'. But there is no output schema and the description omits return shape, error handling, and the singular/plural outcome, leaving moderate room for misinterpretation.
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 define parameters. It explains that 'column' is the column to match and 'value' is the equality value, and adds a case-insensitivity caveat, though it does not provide concrete examples, allowed values, or formatting details.
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 title states a lookup verb and the description specifies the resource ('rows of the Coshhvo dataset') and matching criterion (column equals value exactly, case-insensitive). It distinguishes from a fuzzy search sibling by emphasizing exactness, though it does not name an alternative.
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?
Use case is implied by 'exactly (case-insensitive)' — appropriate when an exact match is required rather than a search. No explicit when-to-use/when-not-to-use guidance or comparison with dataset_search or sibling tools.
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.
Each tool targets a distinct dataset operation: schema, provenance, exact lookup, multi-value comparison, substring search, numeric stats, and ranking. The only near-overlap is dataset_row and dataset_compare, but the multi-value/ordered behavior of compare makes its purpose clearly different.
All tools follow a consistent dataset_<noun> snake_case pattern. The convention makes the tool surface predictable and easy to navigate.
Seven tools is well-scoped for a dataset exploration server. Each tool covers a distinct querying need without the set feeling bloated or sparse.
The tool set covers the full lifecycle of exploring a read-only dataset: schema discovery, provenance, exact filtering, fuzzy search, comparison, statistics, and top/bottom ordering. There are no obvious dead ends for common dataset questions.