unwrangle_product

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

Product detail from a retailer (Amazon/Target/Best Buy/Home Depot/Walmart/…). Returns title, brand, price, rating, availability. Pass the product url (works for any retailer), or for Amazon pass id/asin. Example: unwrangle_product({ retailer: “amazon”, url: “https://www.amazon.com/dp/B07ZPKN6YR”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
retailerstringno
urlstringnoProduct page URL (recommended — works across all retailers).
idstringnoProduct id (Amazon ASIN) — alternative to url. Amazon: pair with country_code.
asinstringnoAlias for id (Amazon ASIN).
country_codestringnoOptional 2-letter country code (e.g. “us”, “uk”). Defaults to “us” when using an id/asin.
_apiKeystringyesUnwrangle API key (get one at unwrangle.com — $10 / 10k credits).

Example call

Arguments

{
  "retailer": "amazon",
  "url": "https://www.amazon.com/dp/B07ZPKN6YR",
  "_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_product","arguments":{"retailer":"amazon","url":"https://www.amazon.com/dp/B07ZPKN6YR","_apiKey":"your-unwrangle-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('unwrangle_product', {
  "retailer": "amazon",
  "url": "https://www.amazon.com/dp/B07ZPKN6YR",
  "_apiKey": "your-unwrangle-api-key"
});

More examples

{
  "retailer": "amazon",
  "id": "B07ZPKN6YR",
  "country_code": "uk",
  "_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.

Regenerated from source · build August 18, 2026