get_current_rank
Retrieve the organic and sponsored keyword rankings for an Amazon ASIN, along with the total result count.
Instructions
Read live keyword rank for an ASIN: organic position, sponsored position, and total result count.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| asin | Yes | ||
| keyword | Yes |
Implementation Reference
- src/index.ts:201-209 (schema)Schema definition for get_current_rank: requires asin (string) and keyword (string) as inputs.
inputSchema: { type: "object" as const, properties: { asin: { type: "string" }, keyword: { type: "string" }, }, required: ["asin", "keyword"], additionalProperties: false, }, - src/index.ts:197-210 (registration)Tool registration for get_current_rank inside the tools array. This is an introspection stub — no local handler logic exists; the actual tool is executed on the remote hosted server.
{ name: "get_current_rank", description: "Read live keyword rank for an ASIN: organic position, sponsored position, and total result count.", inputSchema: { type: "object" as const, properties: { asin: { type: "string" }, keyword: { type: "string" }, }, required: ["asin", "keyword"], additionalProperties: false, }, },