crawlbase_structured

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

Scrape a page into clean structured JSON using a named Crawlbase scraper — skip HTML parsing entirely. Common scraper names: “amazon-product-details”, “amazon-serp”, “google-serp”, “facebook-page”, “facebook-profile”, “instagram-profile”, “instagram-post”, “linkedin-profile”, “linkedin-company”, “tiktok-profile”, “ebay-product”, “walmart-product-details”, “github-repository”, “generic-extractor”. Full catalog: https://crawlbase.com/docs/scrapers/ — social-media scrapers (Facebook/Instagram/LinkedIn) work best with your JavaScript token. Example: crawlbase_structured({ url: “https://www.amazon.com/dp/1098145356”, scraper: “amazon-product-details”, _apiKey: “your-crawlbase-token” })

Parameters

NameTypeRequiredDescription
urlstringyesThe absolute URL of the page to scrape, e.g. “https://www.google.com/search?q=coffee” for google-serp.
scraperstringyesThe Crawlbase scraper name to apply, e.g. “amazon-product-details”, “google-serp”, “linkedin-profile”. Catalog: https://crawlbase.com/docs/scrapers/
countrystringnoTwo-letter ISO country code to route through, e.g. “US”, “DE”. Matters for localized storefronts and SERPs.
_apiKeystringyesYour Crawlbase token (JavaScript token recommended for social-media scrapers). Free tier at https://crawlbase.com

Example call

curl -X POST https://gateway.pipeworx.io/crawlbase/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"crawlbase_structured","arguments":{}}}'

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 16, 2026