Skip to main content
Glama

Create a Rank Radar

create_rank_radar
Destructive

Start tracking organic and sponsored keyword rankings for an ASIN in a niche. Provide an ASIN, a niche ID, and the number of keywords to monitor; confirm the token cost to create the Rank Radar, which returns an ID for later data retrieval.

Instructions

Use this to start tracking organic and sponsored keyword rankings for an ASIN within a niche. ⚠️ Spends Search Term tokens (cost scales with numberOfKeywords) and cannot be undone — set confirm: true only after the user approves the cost. Not safe to retry: each call spends tokens again and creates a separate Rank Radar — if a call errors or times out, check list_rank_radars instead of re-calling. The first call previews the creation and may return warnings alongside the cost note — for example that this product family is already tracked by another Rank Radar. Show every warning message to the user verbatim, before asking them to confirm; do not summarise it or decide on their behalf. A warning never blocks creation. Returns the new rankRadarId; read its data later with get_rank_radar_data. Requires asin, numberOfKeywords (min 1), and a nicheId from list_niches.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
asinYesThe ASIN to track keyword rankings for.
confirmNoMust be true to proceed — creating a Rank Radar spends Search Term tokens. Confirm the cost with the user first.
nicheIdYesThe niche this Rank Radar belongs to. Get one from `list_niches`.
numberOfKeywordsYesHow many keywords to track (minimum 1). More keywords = broader tracking but more Search Term tokens.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.8.0

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the annotations. It discloses that the operation spends Search Term tokens, that cost scales with numberOfKeywords, that it cannot be undone, that it is not safe to retry, that the first call is a preview that may return warnings, that warnings must be shown verbatim, and that a warning never blocks creation. The annotations already declare destructiveHint=true, but the description adds critical context about token cost, retry safety, and the warning-handling protocol. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is dense but well-organized: it front-loads the purpose, then the critical warning, then the retry guidance, then the warning-handling protocol, then the return value and prerequisites. Every sentence earns its place, though the length is substantial. It could be slightly tightened, but the density is justified given the high-stakes nature of the operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with destructiveHint=true, no output schema, and 4 parameters, the description is remarkably complete. It covers prerequisites (nicheId from list_niches), cost behavior, retry safety, warning handling, return value (rankRadarId), and follow-up tool (get_rank_radar_data). An agent has everything needed to invoke this correctly and safely.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all four parameters. The description adds meaningful context beyond the schema: it explains the cost implication of numberOfKeywords, the confirmation requirement for confirm, the source of nicheId (list_niches), and the minimum for numberOfKeywords. It doesn't add syntax details for asin, but the schema already covers that. This is a strong complement to the schema, though not a full 5 because the schema already does most of the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('start tracking'), a specific resource ('organic and sponsored keyword rankings for an ASIN within a niche'), and clearly distinguishes this from sibling tools like list_rank_radars, get_rank_radar_data, and delete_rank_radar. The title and description align, and the scope is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says when to use this tool (to start tracking rankings), and provides clear exclusions: 'Not safe to retry: each call spends tokens again and creates a separate Rank Radar — if a call errors or times out, check list_rank_radars instead of re-calling.' It also names the prerequisite source for nicheId (list_niches) and the follow-up tool (get_rank_radar_data). This is explicit when/when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.