oxylabs_scrape
Pack: oxylabs · Endpoint: https://gateway.pipeworx.io/oxylabs/mcp
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 first — use for JS-heavy sites. Calls are synchronous proxying and can take 10-30 seconds. BYOK: _apiKey is “username:password” from the Oxylabs dashboard. Example: oxylabs_scrape({ url: “https://example.com”, _apiKey: “myuser:mypass” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The absolute URL to scrape, e.g. “https://example.com/products” |
render_js | boolean | no | When true, render the page in a headless browser (executes JavaScript) before returning HTML. Use for JS-heavy sites. Default false (faster raw fetch). |
geo_location | string | no | Geo location to proxy the request from, e.g. “United States” or “Germany”. Optional. |
_apiKey | string | yes | Oxylabs API credentials as “username:password” from the Oxylabs dashboard (https://dashboard.oxylabs.io). Free trial includes up to 2K results. |
Example call
curl -X POST https://gateway.pipeworx.io/oxylabs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"oxylabs_scrape","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"oxylabs": {
"url": "https://gateway.pipeworx.io/oxylabs/mcp"
}
}
}
See Getting Started for client-specific install steps.