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
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The absolute URL of the page to scrape, e.g. “https://www.google.com/search?q=coffee” for google-serp. |
scraper | string | yes | The Crawlbase scraper name to apply, e.g. “amazon-product-details”, “google-serp”, “linkedin-profile”. Catalog: https://crawlbase.com/docs/scrapers/ |
country | string | no | Two-letter ISO country code to route through, e.g. “US”, “DE”. Matters for localized storefronts and SERPs. |
_apiKey | string | yes | Your 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.