unwrangle_reviews
Pack: unwrangle · Endpoint: https://gateway.pipeworx.io/unwrangle/mcp
Reviews for a product on a retailer (Amazon/Target/Best Buy/…). Returns reviewer name, rating, title, text, date, verified-purchase flag. Pass the product url (or Amazon id/asin) and optional page. Reviews cost more credits than product/search. Example: unwrangle_reviews({ retailer: “amazon”, url: “https://www.amazon.com/dp/B07ZPKN6YR”, page: 1, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
retailer | string | no | |
url | string | no | Product page URL to fetch reviews for (recommended). |
id | string | no | Product id (Amazon ASIN) — alternative to url. |
asin | string | no | Alias for id (Amazon ASIN). |
country_code | string | no | Optional 2-letter country code (default “us”). |
page | number | no | Page number of reviews (default 1). |
_apiKey | string | yes | Unwrangle API key (unwrangle.com). |
Example call
Arguments
{
"retailer": "amazon",
"url": "https://www.amazon.com/dp/B07ZPKN6YR",
"page": 1,
"_apiKey": "your-unwrangle-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/unwrangle/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"unwrangle_reviews","arguments":{"retailer":"amazon","url":"https://www.amazon.com/dp/B07ZPKN6YR","page":1,"_apiKey":"your-unwrangle-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('unwrangle_reviews', {
"retailer": "amazon",
"url": "https://www.amazon.com/dp/B07ZPKN6YR",
"page": 1,
"_apiKey": "your-unwrangle-api-key"
});
More examples
{
"retailer": "target",
"url": "https://www.target.com/p/product-name/-/A-123456789",
"_apiKey": "your-unwrangle-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"unwrangle": {
"url": "https://gateway.pipeworx.io/unwrangle/mcp"
}
}
}
See Getting Started for client-specific install steps.