unwrangle_search

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

Search a retailer (Amazon/Target/Best Buy/Home Depot/…) by keyword. Returns product name, brand, price, rating, url, id. Example: unwrangle_search({ retailer: “amazon”, search: “wireless earbuds”, page: 1, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
retailerstringno
searchstringnoSearch keywords, e.g. “wireless earbuds”.
country_codestringnoOptional 2-letter country code (default “us”).
pagenumbernoPage number of results (default 1).
_apiKeystringyesUnwrangle API key (unwrangle.com).

Example call

Arguments

{
  "retailer": "amazon",
  "search": "wireless earbuds",
  "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_search","arguments":{"retailer":"amazon","search":"wireless earbuds","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_search', {
  "retailer": "amazon",
  "search": "wireless earbuds",
  "page": 1,
  "_apiKey": "your-unwrangle-api-key"
});

More examples

{
  "retailer": "best_buy",
  "search": "laptop",
  "country_code": "us",
  "_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