mcp-server-firecrawl

fire_crawl_batch_scrape

Scrape multiple URLs in batch mode. Returns a job ID that can be used to check status.

Input Schema

NameRequiredDescriptionDefault
optionsNo
urlsYesList of URLs to scrape

Input Schema (JSON Schema)

{ "properties": { "options": { "properties": { "excludeTags": { "items": { "type": "string" }, "type": "array" }, "formats": { "items": { "enum": [ "markdown", "html", "rawHtml", "screenshot", "links", "screenshot@fullPage", "extract" ], "type": "string" }, "type": "array" }, "includeTags": { "items": { "type": "string" }, "type": "array" }, "onlyMainContent": { "type": "boolean" }, "waitFor": { "type": "number" } }, "type": "object" }, "urls": { "description": "List of URLs to scrape", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls" ], "type": "object" }