scrapingdog_scrape
Pack: scrapingdog · Endpoint: https://gateway.pipeworx.io/scrapingdog/mcp
Scrape any website through Scrapingdog’s rotating proxies and return its content.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The full URL to scrape including protocol, e.g. “https://example.com/page” |
dynamic | boolean | no | Render JavaScript in a headless browser before returning content (use for SPAs / dynamic pages). |
premium | boolean | no | Use premium residential proxies for hard-to-scrape sites. Costs 10 credits (25 combined with dynamic:true). Default false. |
country | string | no | ISO 3166-1 alpha-2 country code to proxy from, e.g. “us”, “gb”, “de”. Optional geotargeting. |
wait | number | no | Milliseconds to wait for the page to load (0–35000). Use together with dynamic:true for slow pages. |
format | string | no | Response format: “markdown” for LLM-friendly text, “links” for a link list, otherwise HTML (default). Options: html, markdown, links, summary. |
_apiKey | string | yes | BYOK Scrapingdog API key (free trial at scrapingdog.com) |
Example call
curl -X POST https://gateway.pipeworx.io/scrapingdog/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapingdog_scrape","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scrapingdog": {
"url": "https://gateway.pipeworx.io/scrapingdog/mcp"
}
}
}
See Getting Started for client-specific install steps.