mcp-server-firecrawl

fire_crawl_map

Discover URLs from a starting point. Can use both sitemap.xml and HTML link discovery.

Input Schema

NameRequiredDescriptionDefault
ignoreSitemapNoSkip sitemap.xml discovery and only use HTML links
includeSubdomainsNoInclude URLs from subdomains in results
limitNoMaximum number of URLs to return
searchNoOptional search term to filter URLs
sitemapOnlyNoOnly use sitemap.xml for discovery, ignore HTML links
urlYesStarting URL for URL discovery

Input Schema (JSON Schema)

{ "properties": { "ignoreSitemap": { "description": "Skip sitemap.xml discovery and only use HTML links", "type": "boolean" }, "includeSubdomains": { "description": "Include URLs from subdomains in results", "type": "boolean" }, "limit": { "description": "Maximum number of URLs to return", "type": "number" }, "search": { "description": "Optional search term to filter URLs", "type": "string" }, "sitemapOnly": { "description": "Only use sitemap.xml for discovery, ignore HTML links", "type": "boolean" }, "url": { "description": "Starting URL for URL discovery", "type": "string" } }, "required": [ "url" ], "type": "object" }