scraperapi_scrape
Pack: scraperapi · Endpoint: https://gateway.pipeworx.io/scraperapi/mcp
Scrape any web page through ScraperAPI’s rotating proxies and return its content.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The full URL to scrape, e.g. “https://example.com/page” |
render | boolean | no | Render JavaScript before returning content (use for SPAs / dynamic pages). Default false. |
country_code | string | no | Two-letter country code to proxy from, e.g. “us”, “gb”, “de”. Optional geotargeting. |
premium | boolean | no | Use premium residential proxies for hard-to-scrape sites. Default false. |
output_format | string | no | Response format: “markdown” or “text” for LLM-friendly content, otherwise HTML (default). Options: markdown, text. |
autoparse | boolean | no | Ask ScraperAPI to auto-parse supported sites (Amazon/Google) into structured JSON. Default false. |
_apiKey | string | yes | ScraperAPI key (sign up at https://www.scraperapi.com) |
Example call
curl -X POST https://gateway.pipeworx.io/scraperapi/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scraperapi_scrape","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scraperapi": {
"url": "https://gateway.pipeworx.io/scraperapi/mcp"
}
}
}
See Getting Started for client-specific install steps.