mcp-server-firecrawl

MIT License
9,757
1,889
  • Apple
  • Linux

firecrawl_extract

Extract structured information from web pages using LLM. Supports both cloud AI and self-hosted LLM extraction.

Input Schema

NameRequiredDescriptionDefault
allowExternalLinksNoAllow extraction from external links
enableWebSearchNoEnable web search for additional context
includeSubdomainsNoInclude subdomains in extraction
promptNoPrompt for the LLM extraction
schemaNoJSON schema for structured data extraction
systemPromptNoSystem prompt for LLM extraction
urlsYesList of URLs to extract information from

Input Schema (JSON Schema)

{ "properties": { "allowExternalLinks": { "description": "Allow extraction from external links", "type": "boolean" }, "enableWebSearch": { "description": "Enable web search for additional context", "type": "boolean" }, "includeSubdomains": { "description": "Include subdomains in extraction", "type": "boolean" }, "prompt": { "description": "Prompt for the LLM extraction", "type": "string" }, "schema": { "description": "JSON schema for structured data extraction", "type": "object" }, "systemPrompt": { "description": "System prompt for LLM extraction", "type": "string" }, "urls": { "description": "List of URLs to extract information from", "items": { "type": "string" }, "type": "array" } }, "required": [ "urls" ], "type": "object" }