Search the dataset
dataset_searchRows of the Structured Settlement Compare dataset whose cells contain the query (case-insensitive), up to 50.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | text to look for in any cell |
dataset_searchRows of the Structured Settlement Compare dataset whose cells contain the query (case-insensitive), up to 50.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | text to look for in any cell |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden. It does disclose case-insensitive substring matching and a 50-row cap, but says nothing about result ordering/relevance, whether the search is read-only, or what happens when nothing matches, which matters for a search tool with zero annotation coverage.
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 front-loaded sentence with no filler; the scope (dataset), match rule (case-insensitive cell containment), and bound (up to 50) are all delivered 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 read-only search with no annotations and no output schema, the description covers what is returned at a coarse level (rows) but omits ordering, result shape, and empty-result behavior. Adequate but with visible gaps.
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 only 50% (limit is undocumented in the schema). The description adds useful meaning for query by clarifying matching is case-insensitive and applies to any cell, and effectively restates the 50-row limit bound, but it does not explain limit's role versus the stated cap. Baseline 3 is fair.
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 states a specific operation on a concrete resource: returning rows of the named 'Structured Settlement Compare' dataset whose cells match the query. It is distinguishable from siblings like dataset_stats or dataset_columns, though it never explicitly contrasts itself with the close neighbors dataset_row and dataset_top.
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?
There is no guidance on when to choose this over dataset_top, dataset_row, or dataset_compare, and no prerequisites or exclusions are stated. The agent must infer that this is the free-text search tool purely from the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.