Oxylabs
live DeveloperTechnologyWeb scraping via the Oxylabs Web Scraper API (bring your own credentials) — universal scraping with JS rendering plus parsed Google search and Amazon product results.
Tools
oxylabs_scrape Scrape any URL via the Oxylabs Web Scraper API (rotating proxies, anti-bot handling) and return the page HTML with its upstream status code. Set render_js:true to load the page in a headless browser f
No parameters required.
Try it
oxylabs_google_search Run a Google search through the Oxylabs Web Scraper API and return structured organic results (position, title, url, description) — Google structured scraping with geo-targeting. Calls are synchronous
No parameters required.
Try it
oxylabs_amazon_product Fetch structured Amazon product data by ASIN via the Oxylabs Web Scraper API — Amazon structured scraping: title, price, currency, rating, reviews count, stock/availability. Calls are synchronous prox
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"oxylabs_scrape","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("oxylabs_scrape", {}); // Or ask in plain English:
const answer = await px.ask("web scraping via the oxylabs web scraper api (bring your own credentials) — universal scraping with js rendering plus parsed google search and amazon product results");