mcp-omnisearch

by spences10
Verified
MIT License
41
10
  • Linux

firecrawl_crawl_process

Deep crawling of all accessible subpages on a website with configurable depth limits using Firecrawl. Efficiently discovers and extracts content from multiple pages within a domain. Best for comprehensive site analysis, content indexing, and data collection from entire websites.

Input Schema

NameRequiredDescriptionDefault
extract_depthNoThe depth of the extraction process. "advanced" retrieves more data but costs more credits.basic
urlYes

Input Schema (JSON Schema)

{ "properties": { "extract_depth": { "default": "basic", "description": "The depth of the extraction process. \"advanced\" retrieves more data but costs more credits.", "enum": [ "basic", "advanced" ], "type": "string" }, "url": { "oneOf": [ { "description": "Single URL to process", "type": "string" }, { "description": "Multiple URLs to process", "items": { "type": "string" }, "type": "array" } ] } }, "required": [ "url" ], "type": "object" }