ScrapingAnt

live Web ScrapingDeveloper Tools

ScrapingAnt MCP — headless-render + rotating-proxy scraping: fetch HTML, clean markdown, or AI-extracted structured fields from any URL. BYO ScrapingAnt API key.

3 tools
0ms auth
free tier 50 calls/day

Tools

scrapingant_scrape

Scrape a web page and return its raw HTML via ScrapingAnt (headless-browser rendering + rotating proxies). Handles JS-heavy sites and anti-bot pages. Example: scrapingant_scrape({ url: "https://exampl

No parameters required.

Try it
scrapingant_markdown

Fetch a web page and return clean, LLM-ready Markdown (boilerplate stripped) via ScrapingAnt. Ideal for feeding page content to a model. Example: scrapingant_markdown({ url: "https://example.com/artic

No parameters required.

Try it
scrapingant_extract

Extract structured data from a web page using ScrapingAnt AI extraction. Describe the fields you want in `extract_properties` (comma-separated) and get back a JSON object with matching camelCase keys.

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/scrapingant/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/scrapingant/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"scrapingant_scrape","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("scrapingant_scrape", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("scrapingant mcp — headless-render + rotating-proxy scraping: fetch html, clean markdown, or ai-extracted structured fields from any url");

Related packs

Other Pipeworx packs in the same categories (Web Scraping, Developer Tools):