amazon_product
Pack: traject-ecommerce · Endpoint: https://gateway.pipeworx.io/traject-ecommerce/mcp
Get Amazon product details by ASIN — title, brand, price, rating, ratings total, bestsellers rank, and image. Uses your Rainforest API key. Example: amazon_product({ asin: “B08N5WRWNW”, amazon_domain: “amazon.com”, _apiKey: “your-rainforest-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
asin | string | yes | Amazon Standard Identification Number, e.g. “B08N5WRWNW” |
amazon_domain | string | no | Amazon marketplace domain (default “amazon.com”), e.g. “amazon.co.uk” |
_apiKey | string | yes | Your Rainforest API key (get one at trajectdata.com) — passed as the api_key query param |
Example call
Arguments
{
"asin": "B08N5WRWNW",
"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_product","arguments":{"asin":"B08N5WRWNW","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_product', {
"asin": "B08N5WRWNW",
"amazon_domain": "amazon.com",
"_apiKey": "your-traject-ecommerce-api-key"
});
More examples
{
"asin": "B0C3V1KPWQ",
"amazon_domain": "amazon.co.uk",
"_apiKey": "your-traject-ecommerce-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"traject-ecommerce": {
"url": "https://gateway.pipeworx.io/traject-ecommerce/mcp"
}
}
}
See Getting Started for client-specific install steps.