Keepa
live EcommerceDataAmazon price & sales-rank HISTORY, bestsellers, and deals by ASIN. BYO key.
Tools
keepa_product Price & sales-rank history + stats for an Amazon ASIN — the historical low/high/avg, current Amazon/New/Used/Buy-Box prices, sales rank, and est. monthly units sold. Example: keepa_product({ asin: "B0
No parameters required.
Try it
keepa_bestsellers 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" })
No parameters required.
Try it
keepa_deals Current Amazon deals — recent price drops across the marketplace, optionally filtered to a minimum % off. Example: keepa_deals({ domain: 1, min_percent_off: 20, _apiKey: "your-key" })
No parameters required.
Try it
keepa_search Search Amazon for a keyword → ASINs. Returns matching product ASINs (and titles when available) for a search term. Example: keepa_search({ term: "mechanical keyboard", domain: 1, _apiKey: "your-key" }
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/keepa/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/keepa/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"keepa_product","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("keepa_product", {}); // Or ask in plain English:
const answer = await px.ask("amazon price & sales-rank history, bestsellers, and deals by asin"); Related packs
Other Pipeworx packs in the same categories (Ecommerce, Data):