MCP server exposing 3 tools for unwrangle.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/unwrangle/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
unwrangle_product — 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" })unwrangle_reviews — 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" })unwrangle_search — 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" })Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/unwrangle/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io