Compare rows side by side
dataset_compareThe rows of the Send A Parcel Compare dataset whose column is any of the given values, in the order given — for "X vs Y" questions.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | ||
| values | Yes |
dataset_compareThe rows of the Send A Parcel Compare dataset whose column is any of the given values, in the order given — for "X vs Y" questions.
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | ||
| values | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations and no output schema, the description carries the full behavioral burden and mostly fails. It does disclose one real trait — result ordering follows the order of the supplied values — but says nothing about read-only safety, what happens when a value has no matching row, or duplicate/multi-row 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?
It is a single short sentence with no padding, which is good. However, the phrasing "whose column is any of the given values" is genuinely confusing — it blurs column name with cell value — so brevity comes at the cost of clarity.
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 read tool this is thin: no annotations, no output schema, zero parameter descriptions, and an ambiguous core sentence. An agent can guess the call shape but cannot confidently predict return structure or edge-case 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 description coverage is 0%, so the description must compensate, and it partially does: it clarifies that 'column' identifies a column and 'values' are matched against it, with order preserved. It never states the 2-item minimum / 10-item maximum or that values are strings, so the compensation is incomplete.
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 identifies the resource (rows of the Send A Parcel Compare dataset) and the filter semantics (column matching any of the given values, returned in the given order), which separates it somewhat from dataset_row and dataset_search. But it is a sentence fragment with no explicit verb to 'compare', so the operation's purpose is only inferred, not stated.
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?
"For 'X vs Y' questions" gives an implied usage context, which is more than nothing but far short of explicit guidance. No alternatives are named and no exclusion conditions are given, even though siblings dataset_row, dataset_search, and dataset_top compete for similar lookups.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.