scrapingant_markdown

Pack: scrapingant · Endpoint: https://gateway.pipeworx.io/scrapingant/mcp

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/article”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
urlstringyesThe absolute URL of the page to convert to Markdown, e.g. “https://example.com/blog/post
proxy_typestringnoProxy pool to use: “datacenter” (default) or “residential”.
proxy_countrystringnoTwo-letter ISO country code for the proxy exit location, e.g. “US”.
_apiKeystringyesYour ScrapingAnt API key. Sign up free at https://app.scrapingant.com/signup

Example call

Arguments

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

curl

curl -X POST https://gateway.pipeworx.io/scrapingant/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapingant_markdown","arguments":{"url":"https://example.com/article","_apiKey":"your-scrapingant-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "url": "https://example.com/blog/post",
  "proxy_type": "residential",
  "proxy_country": "GB",
  "_apiKey": "your-scrapingant-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "scrapingant": {
      "url": "https://gateway.pipeworx.io/scrapingant/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026