mcp-server-firecrawl

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

firecrawl_deep_research

Conduct deep research on a query using web crawling, search, and AI analysis.

Input Schema

NameRequiredDescriptionDefault
maxDepthNoMaximum depth of research iterations (1-10)
maxUrlsNoMaximum number of URLs to analyze (1-1000)
queryYesThe query to research
timeLimitNoTime limit in seconds (30-300)

Input Schema (JSON Schema)

{ "properties": { "maxDepth": { "description": "Maximum depth of research iterations (1-10)", "type": "number" }, "maxUrls": { "description": "Maximum number of URLs to analyze (1-1000)", "type": "number" }, "query": { "description": "The query to research", "type": "string" }, "timeLimit": { "description": "Time limit in seconds (30-300)", "type": "number" } }, "required": [ "query" ], "type": "object" }