keepa_bestsellers

Pack: keepa · Endpoint: https://gateway.pipeworx.io/keepa/mcp

Bestsellers in an Amazon category — returns the top ASINs by sales rank for a given category node id. Example: keepa_bestsellers({ category: “281052”, domain: 1, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
categorystringyesAmazon category node id (e.g. “281052”). Use keepa_product on a known ASIN to find its sales_rank_reference category.
domainintegernoKeepa marketplace id (default 1=US). See keepa_product for the full list.
_apiKeystringyesKeepa API key

Example call

Arguments

{
  "category": "281052",
  "_apiKey": "your-keepa-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/keepa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"keepa_bestsellers","arguments":{"category":"281052","_apiKey":"your-keepa-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('keepa_bestsellers', {
  "category": "281052",
  "_apiKey": "your-keepa-api-key"
});

More examples

{
  "category": "172282",
  "domain": 3,
  "_apiKey": "your-keepa-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "keepa": {
      "url": "https://gateway.pipeworx.io/keepa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 18, 2026