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

NameTypeRequiredDescription
urlstringyesThe full URL to scrape, e.g. “https://example.com/page
renderbooleannoRender JavaScript before returning content (use for SPAs / dynamic pages). Default false.
country_codestringnoTwo-letter country code to proxy from, e.g. “us”, “gb”, “de”. Optional geotargeting.
premiumbooleannoUse premium residential proxies for hard-to-scrape sites. Default false.
output_formatstringnoResponse format: “markdown” or “text” for LLM-friendly content, otherwise HTML (default). Options: markdown, text.
autoparsebooleannoAsk ScraperAPI to auto-parse supported sites (Amazon/Google) into structured JSON. Default false.
_apiKeystringyesScraperAPI key (sign up at https://www.scraperapi.com)

Example call

Arguments

{
  "url": "https://example.com",
  "_apiKey": "your-scraperapi-api-key"
}

curl

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":{"url":"https://example.com","_apiKey":"your-scraperapi-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('scraperapi_scrape', {
  "url": "https://example.com",
  "_apiKey": "your-scraperapi-api-key"
});

More examples

{
  "url": "https://example.com/dynamic-page",
  "render": true,
  "output_format": "markdown",
  "country_code": "us",
  "_apiKey": "your-scraperapi-api-key"
}

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.

Regenerated from source · build August 29, 2026