Look a row up by an exact key
dataset_rowThe rows of the Handovra 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 Handovra 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 full burden. It does disclose the core matching behavior (exact and case-insensitive) and that results are rows of the dataset. However, it does not cover edge behavior such as no-match results, multiple matches, or column-name validation.
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 one compact sentence with no filler; the core condition is stated directly. It is efficient, though the phrasing is a noun phrase rather than an imperative.
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 simple two-parameter lookup the core invocation is clear, and the exact/case-insensitive behavior is stated. But there is no output schema, no mention of count/return shape, and no routing to sibling dataset_columns for discovering valid column names, so an agent has some gaps to resolve.
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 explain the parameters. It does relate 'column' and 'value' to the equality condition, and adds the case-insensitive nuance. It does not tell the agent where valid column names come from (e.g., dataset_columns) or value formatting, so compensation is partial.
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 and description clearly identify a lookup operation on the Handovra dataset by exact column-value equality, and the 'exactly (case-insensitive)' qualifier distinguishes it from the fuzzy dataset_search sibling. Minor inconsistency: title says 'a row' while description says 'rows', but the meaning is unambiguous.
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 description implies the right use case (exact-match lookups), but it never explicitly tells an agent when to prefer this tool over dataset_search or other siblings, nor does it mention when not to use it. The exact-match qualifier is the only routing signal.
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 differentiated by operation: schema, provenance, exact match, substring search, multi-value comparison, stats, and ranking. The only minor overlaps are dataset_row vs dataset_compare for single-value lookups and the shared metadata banner in dataset_columns vs the full provenance record.
All tools share a consistent lowercase dataset_ prefix and snake_case style, making the family immediately recognizable. The suffixes mix nouns (columns, provenance, row, stats) with verbs (compare, search), so it is not a strict verb_noun pattern, but the deviation is minor and readable.
Seven tools is well within the ideal range for a read-only dataset exploration server. Each tool covers a distinct query need without redundancy, and none feels like filler.
The set covers the core data-exploration lifecycle: schema discovery, provenance, exact lookup, text search, multi-value comparison, numeric summaries, and top/bottom ranking. It lacks direct numeric range filtering or group-by, but agents can often approximate these with top, stats, or search, so the gaps are minor rather than blocking.