Bright Data
live DeveloperTechnologyWeb scraping through Bright Data Web Unlocker (bring your own token and zone) — fetch heavily protected pages through the anti-bot unlocking network, plus parsed Google results via SERP zones.
Tools
brightdata_unlock Fetch any URL through Bright Data Web Unlocker — rotating residential proxies with automatic anti-bot bypass and CAPTCHA solving, built for the hardest-to-scrape sites (Cloudflare, PerimeterX, Akamai
No parameters required.
Try it
brightdata_serp Run a Google search through the Bright Data SERP API and return parsed organic results (rank, title, link, description) with geo-targeting. Uses the same Bright Data request API with a SERP-type zone
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/bright-data/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/bright-data/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"brightdata_unlock","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("brightdata_unlock", {}); // Or ask in plain English:
const answer = await px.ask("web scraping through bright data web unlocker (bring your own token and zone) — fetch heavily protected pages through the anti-bot unlocking network, plus parsed google results via serp zones");