amazon_search

Pack: traject-ecommerce · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/amazon_search for the schema, then POST the same URL with its arguments for the data.

Search Amazon products by keyword — returns position, title, ASIN, price, rating, and ratings total. Uses your Rainforest API key. Example: amazon_search({ search_term: “wireless earbuds”, amazon_domain: “amazon.com”, _apiKey: “your-rainforest-key” })

Parameters

NameTypeRequiredDescription
search_termstringyesSearch query, e.g. “wireless earbuds”
amazon_domainstringnoAmazon marketplace domain (default “amazon.com”)
_apiKeystringyesYour Rainforest API key (get one at trajectdata.com)

Example call

Arguments

{
  "search_term": "wireless earbuds",
  "amazon_domain": "amazon.com",
  "_apiKey": "your-traject-ecommerce-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/traject-ecommerce/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"amazon_search","arguments":{"search_term":"wireless earbuds","amazon_domain":"amazon.com","_apiKey":"your-traject-ecommerce-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('amazon_search', {
  "search_term": "wireless earbuds",
  "amazon_domain": "amazon.com",
  "_apiKey": "your-traject-ecommerce-api-key"
});

Connect

Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://pipeworx.io/mcp"
    }
  }
}
Connect to just the traject-ecommerce pack
{
  "mcpServers": {
    "traject-ecommerce": {
      "url": "https://gateway.pipeworx.io/traject-ecommerce/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 25, 2026