Look a row up by an exact key
dataset_rowThe rows of the FindAgency HQ 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 FindAgency HQ 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 full behavioral disclosure burden. It does state the exact and case-insensitive matching behavior, but it leaves ambiguity between the singular title ('a row') and plural description ('The rows'), and does not clarify whether all matches are returned, the output format, or no-match behavior.
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, efficient sentence that packs in the dataset name, the matching condition, and the case-insensitivity modifier with no wasted words. It is appropriately sized and front-loaded.
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 read tool with no output schema and no annotations, the description should explain what is returned when matches exist or not. It only says 'the rows... where a column equals a value exactly,' leaving output shape, result cardinality, and edge cases unspecified. This is minimal but incomplete.
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%, and the description partially compensates by defining the relationship: `column` is the field to compare against and `value` is the exact value to match. However, it does not list valid column names, value formatting expectations, or other parameter constraints, so the enrichment over the schema is basic.
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 express a lookup operation for rows where a column exactly equals a value, with a specific verb ('look up') and a concrete resource. It does not explicitly differentiate from sibling tools like dataset_search, so it falls short of a 5, but the exact-match condition gives it a distinct identity.
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 tool is for exact, case-insensitive value lookups, which suggests a natural use case. However, there is no explicit guidance about when to use this tool versus alternatives such as dataset_search, nor any mention of when not to use it.
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.
The dataset_* tools are mostly distinct (columns vs provenance vs row vs search vs stats vs top vs compare), though dataset_row, dataset_search, and dataset_compare have overlapping filtering semantics. The enquiry_* tools are clearly distinct. Overall, descriptions clarify confusion, but minor ambiguity exists.
All tools follow a consistent lowercase_with_underscores naming convention, with a clear prefix (dataset_ or enquiry_/submit_). The pattern is predictable and uniform across the set.
10 tools is a well-scoped number for a dataset querying and enquiry submission server. Each tool serves a distinct purpose without unnecessary bloat or redundancy.
The dataset tools cover the essential read-only operations (columns, provenance, row, search, stats, top, compare) and the enquiry tools cover the full submission flow (describe, fields, submit). Minor gaps exist like no update/cancel for enquiries, but these are not core to the server's stated purpose.