MCP server exposing 3 tools for scrapingbee.
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/scrapingbee/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
scrapingbee_scrape — Fetch and render any web page through ScrapingBee (headless browser + proxy rotation), returning the resulting HTML. Handles JS-heavy sites, geolocation, and ad-blocking. Example: scrapingbee_scrape({ url: "https://example.com", render_js: true, _apiKey: "your-key" })scrapingbee_ai_extract — Extract structured data from a web page using ScrapingBee's AI. Pass a natural-language question or field description via `ai_query` and get back structured JSON. Example: scrapingbee_ai_extract({ url: "https://example.com/product", ai_query: "product name and price", _apiKey: "your-key" })scrapingbee_google — Scrape Google Search results via ScrapingBee's Google SERP API. Returns structured JSON with organic results, AI overviews, local results, related searches, and more. Example: scrapingbee_google({ search: "best coffee grinder", country_code: "us", _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/scrapingbee/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io