Look a row up by an exact key
dataset_rowThe rows of the HomeCover 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 HomeCover 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?
With no annotations, the description carries the burden of behavioral disclosure. It usefully reveals that matching is exact and case-insensitive, but it does not describe output shape, ordering, limits, or whether one row or all matching rows are returned, leaving partial transparency.
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 delivers the core semantics with no filler. The behavior is front-loaded and the title reinforces the purpose efficiently.
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-string-parameter lookup, the core behavior is stated, but no output schema or annotations exist. The description omits return-value details, sibling differentiation, and behavior for invalid columns or missing keys, making it minimally viable rather than complete.
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 compensate. It only restates the column/value relationship in prose and adds no detail about valid column names, value formatting, or accepted data types, providing little beyond the obvious property 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 title and description together state a clear lookup operation: return rows from the HomeCover HQ dataset where a column equals a given value. The exactness and case-insensitivity qualifiers distinguish it from a fuzzy search, though no sibling is explicitly named.
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?
Usage is implied through the phrase 'exact key' and the explicit case-insensitive exact-match behavior, which hints this is for precise key lookups rather than search. However, no explicit when-to-use or when-not-to-use guidance is given, and no alternative tools are mentioned.
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 have clearly distinct purposes: schema, provenance, exact row lookup, substring search, comparison, stats, top values, and enquiry steps are all separate. The only mild ambiguity is between dataset_row, dataset_search, and dataset_compare, but their descriptions clarify exact matching, substring matching, and ordered value comparison respectively.
The dataset_* prefix and enquiry_* prefix create a clear grouping. Within each group the pattern is mostly consistent, though some names are noun-based (dataset_columns, dataset_provenance) while others are verb-based (dataset_search, dataset_compare), and submit_enquiry reverses the prefix order.
Ten tools is a well-scoped set for this domain: seven query tools cover the dataset surface and three cover the enquiry flow. Each tool has a distinct job and none feel redundant.
The dataset side covers schema discovery, provenance, exact lookup, search, comparison, statistics, and ranking, which covers the full range of likely questions. The enquiry side handles explaining the process, listing fields, and submitting with a two-step confirmation, leaving no obvious dead ends.