keepa_deals

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

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” })

Parameters

NameTypeRequiredDescription
domainintegernoKeepa marketplace id (default 1=US). See keepa_product for the full list.
min_percent_offintegernoMinimum price-drop percentage to include (default 20).
pageintegernoResult page (default 0; each page ~150 deals).
selectionobjectnoAdvanced: a full Keepa deals “selection” object to send verbatim (overrides the simple filters). See keepa.com API docs for its schema.
_apiKeystringyesKeepa API key

Example call

Arguments

{
  "_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_deals","arguments":{"_apiKey":"your-keepa-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "domain": 1,
  "min_percent_off": 30,
  "page": 0,
  "_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