Look a row up by an exact key
dataset_rowThe rows of the The Water Hub 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 The Water Hub 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 provided, so the description carries the full disclosure burden. It does disclose the case-insensitive equality behavior and that multiple rows may be returned, but it does not describe behavior for no matches, duplicate matches, or output shape. These are notable gaps for a tool with no output schema.
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 front-loaded sentence with no filler. It earns its place, but the awkward 'The rows of the The Water Hub dataset' phrasing and the singular/plural mismatch between title ('a row') and description ('rows') prevent a perfect structure score.
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 predicate is described, but with no annotations and no output schema, the description leaves out return behavior, error conditions, and any guidance on how this relates to sibling tools. It is minimally sufficient but not complete enough for an agent to fully anticipate the tool's behavior.
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 coverage is 0%, so the description must explain the parameters, and it does: 'column' is the dataset column to test and 'value' is the exact value to match. This adds real meaning beyond the raw string types, though it does not enumerate valid column names or edge cases like case sensitivity of column names.
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 states the operation: retrieve rows from The Water Hub dataset where a specified column equals a given value. The title and description together distinguish this as an exact-match lookup rather than a general search, though the double 'the' typo slightly weakens clarity.
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 this tool is for exact, case-insensitive equality matching, which differentiates it from sibling tools like dataset_search, but it never explicitly states when to use this tool versus alternatives. No exclusions or prerequisite conditions are given.
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 operation on the dataset or enquiry. dataset_search, dataset_row, dataset_compare, and dataset_top have clear differences in matching logic and output. Enquiry tools are clearly separate. No two tools appear to do the same thing.
All dataset tools follow a dataset_* pattern, and enquiry tools follow enquiry_* except submit_enquiry which inverts the order. This is a minor deviation but the overall naming is predictable and clear.
10 tools is well-scoped for the domain, covering both data querying and enquiry submission without bloat.
The dataset query surface covers schema, metadata, row lookup, search, stats, and top/bottom. Enquiry covers description, fields, and submission. Minor gaps like a 'list all rows' or enquiry status check exist but are not critical.