bulk_keywords
Look up volume and depth for up to 1000 keywords in one call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Marketplace code | us |
| keywords | Yes | Array of keyword strings |
Look up volume and depth for up to 1000 keywords in one call.
| Name | Required | Description | Default |
|---|---|---|---|
| country | No | Marketplace code | us |
| keywords | Yes | Array of keyword strings |
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 must convey behavioral traits. It mentions the batch size limit (up to 1000) but does not disclose whether the operation is read-only, potential rate limits, or error handling for invalid keywords.
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 sentence with no wasted words. It is front-loaded and efficient.
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?
No output schema is provided, and the description does not specify the structure of returned data (e.g., how volume and depth are formatted per keyword). Error handling and response format are missing, which is important for a batch operation.
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 100% (both parameters have descriptions). The tool description adds no new meaning beyond the schema; it only reiterates the batch limit already in the schema (maxItems: 1000). Baseline score of 3 is appropriate.
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 verb 'Look up', the resource 'volume and depth', and the scope 'up to 1000 keywords in one call'. This distinguishes it from sibling tools like 'search_keywords' (likely single keyword) and 'related_keywords' (related terms).
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 usage for bulk keyword lookups but does not explicitly state when to use this tool over alternatives like 'search_keywords' or 'related_keywords'. No exclusion criteria or alternative guidance is provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.