← Back to search

firecrawl-mcp

firecrawl MIT 6,348 stars Scanned 5h ago

MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.

B
85 / 100

Versions

1.0.0 latest
May 20, 2026
PermissionsTool SafetyAuthAnnotationsCode QualityStabilitySpecVuln HistoryAuthorTransparencyCommunity

Tools 24

firecrawl_agent
unchecked low

Autonomous web research agent. This is a separate AI agent layer that independently browses the internet, searches for information, navigates through pages, and extracts structured data based on your query. You describe what you need, and the agent figures out where to find it. **How it works:** The agent performs web searches, follows links, reads pages, and gathers data autonomously. This runs **asynchronously** - it returns a job ID immediately, and you poll \

readOnlyHint false openWorldHint true destructiveHint false
firecrawl_scrape
unchecked low

Scrape content from a single URL with advanced options. This is the most powerful, fastest and most reliable scraper tool, if available you should always default to using this tool for any web scraping needs. **Best for:** Single page content extraction, when you know exactly which page contains the information. **Not recommended for:** Multiple pages (call scrape multiple times or use crawl), unknown page location (use search). **Common mistakes:** Using markdown format when extracting specific data points (use JSON instead). **Other Features:** Use 'branding' format to extract brand identity (colors, fonts, typography, spacing, UI components) for design analysis or style replication. **CRITICAL - Format Selection (you MUST follow this):** When the user asks for SPECIFIC data points, you MUST use JSON format with a schema. Only use markdown when the user needs the ENTIRE page content. **Use JSON format when user asks for:** - Parameters, fields, or specifications (e.g., "get the header parameters", "what are the required fields") - Prices, numbers, or structured data (e.g., "extract the pricing", "get the product details") - API details, endpoints, or technical specs (e.g., "find the authentication endpoint") - Lists of items or properties (e.g., "list the features", "get all the options") - Any specific piece of information from a page **Use markdown format ONLY when:** - User wants to read/summarize an entire article or blog post - User needs to see all content on a page without specific extraction - User explicitly asks for the full page content **Handling JavaScript-rendered pages (SPAs):** If JSON extraction returns empty, minimal, or just navigation content, the page is likely JavaScript-rendered or the content is on a different URL. Try these steps IN ORDER: 1. **Add waitFor parameter:** Set \

openWorldHint true
firecrawl_map
unchecked low

Map a website to discover all indexed URLs on the site. **Best for:** Discovering URLs on a website before deciding what to scrape; finding specific sections or pages within a large site; locating the correct page when scrape returns empty or incomplete results. **Not recommended for:** When you already know which specific URL you need (use scrape); when you need the content of the pages (use scrape after mapping). **Common mistakes:** Using crawl to discover URLs instead of map; jumping straight to firecrawl_agent when scrape fails instead of using map first to find the right page. **IMPORTANT - Use map before agent:** If \

readOnlyHint true openWorldHint true
firecrawl_search
unchecked low

Search the web and optionally extract content from search results. This is the most powerful web search tool available, and if available you should always default to using this tool for any web search needs. The query also supports search operators, that you can use if needed to refine the search: | Operator | Functionality | Examples | ---|-|-| | \

readOnlyHint true openWorldHint true
firecrawl_search_feedback
unchecked low

Send structured feedback on a previous \

readOnlyHint false openWorldHint true
firecrawl_crawl
unchecked low

Starts a crawl job on a website and extracts content from all pages. **Best for:** Extracting content from multiple related pages, when you need comprehensive coverage. **Not recommended for:** Extracting content from a single page (use scrape); when token limits are a concern (use map + batch_scrape); when you need fast results (crawling can be slow). **Warning:** Crawl responses can be very large and may exceed token limits. Limit the crawl depth and number of pages, or use map + batch_scrape for better control. **Common mistakes:** Setting limit or maxDiscoveryDepth too high (causes token overflow) or too low (causes missing pages); using crawl for a single page (use scrape instead). Using a /* wildcard is not recommended. **Prompt Example:** "Get all blog posts from the first two levels of example.com/blog." **Usage Example:** \

readOnlyHint false openWorldHint true destructiveHint false
firecrawl_check_crawl_status
unchecked low

Check the status of a crawl job. **Usage Example:** \

readOnlyHint true openWorldHint false
firecrawl_extract
unchecked low

Extract structured information from web pages using LLM capabilities. Supports both cloud AI and self-hosted LLM extraction. **Best for:** Extracting specific structured data like prices, names, details from web pages. **Not recommended for:** When you need the full content of a page (use scrape); when you're not looking for specific structured data. **Arguments:** - urls: Array of URLs to extract information from - prompt: Custom prompt for the LLM extraction - schema: JSON schema for structured data extraction - allowExternalLinks: Allow extraction from external links - enableWebSearch: Enable web search for additional context - includeSubdomains: Include subdomains in extraction **Prompt Example:** "Extract the product name, price, and description from these product pages." **Usage Example:** \

readOnlyHint true openWorldHint true destructiveHint false
firecrawl_agent_status
unchecked low

Check the status of an agent job and retrieve results when complete. Use this to poll for results after starting an agent with \

readOnlyHint true openWorldHint false destructiveHint false
firecrawl_browser_create
unchecked low

**DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.** Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually. Create a browser session for code execution via CDP (Chrome DevTools Protocol). **Arguments:** - ttl: Total session lifetime in seconds (30-3600, optional) - activityTtl: Idle timeout in seconds (10-3600, optional) - streamWebView: Whether to enable live view streaming (optional) - profile: Save and reuse browser state (cookies, localStorage) across sessions (optional) - name: Profile name (sessions with the same name share state) - saveChanges: Whether to save changes back to the profile (default: true) **Usage Example:** \

readOnlyHint false openWorldHint false destructiveHint false
firecrawl_browser_execute
unchecked low

**DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.** Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually. Execute code in a browser session. Supports agent-browser commands (bash), Python, or JavaScript. **Requires:** An active browser session (create one with firecrawl_browser_create first). **Arguments:** - sessionId: The browser session ID (required) - code: The code to execute (required) - language: "bash", "python", or "node" (optional, defaults to "bash") **Recommended: Use bash with agent-browser commands** (pre-installed in every sandbox): \

readOnlyHint false openWorldHint false destructiveHint true
firecrawl_browser_delete
unchecked low

**DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.** Destroy a browser session. **Usage Example:** \

readOnlyHint false openWorldHint false destructiveHint true
firecrawl_browser_list
unchecked low

**DEPRECATED — prefer firecrawl_scrape + firecrawl_interact instead.** List browser sessions, optionally filtered by status. **Usage Example:** \

readOnlyHint true openWorldHint false destructiveHint false
firecrawl_interact
unchecked low

Interact with a previously scraped page in a live browser session. Scrape a page first with firecrawl_scrape, then use the returned scrapeId to click buttons, fill forms, extract dynamic content, or navigate deeper. **Best for:** Multi-step workflows on a single page — searching a site, clicking through results, filling forms, extracting data that requires interaction. **Requires:** A scrapeId from a previous firecrawl_scrape call (found in the metadata of the scrape response). **Arguments:** - scrapeId: The scrape job ID from a previous scrape (required) - prompt: Natural language instruction describing the action to take (use this OR code) - code: Code to execute in the browser session (use this OR prompt) - language: "bash", "python", or "node" (optional, defaults to "node", only used with code) - timeout: Execution timeout in seconds, 1-300 (optional, defaults to 30) **Usage Example (prompt):** \

readOnlyHint false openWorldHint true destructiveHint false
firecrawl_interact_stop
unchecked low

Stop an interact session for a scraped page. Call this when you are done interacting to free resources. **Usage Example:** \

readOnlyHint false openWorldHint false destructiveHint true
firecrawl_parse
unchecked low

Parse a file from the local filesystem using a self-hosted Firecrawl API's /v2/parse endpoint. This is the fastest and most reliable way to extract content from a document on disk — if the file lives locally and the MCP is pointed at a self-hosted Firecrawl instance, you should always prefer this tool over uploading the file elsewhere and then scraping it. **Best for:** Extracting content from a local document (PDF, Word, Excel, HTML, etc.) when you don't want to host it on the public web first; pulling structured data out of a file with JSON format; converting binary documents into markdown for downstream reasoning. **Not recommended for:** Remote URLs (use firecrawl_scrape); multiple files at once (call parse multiple times); documents that require interactive actions, screenshots, or change tracking — those aren't supported by the parse endpoint. **Common mistakes:** Passing a URL instead of a local file path; requesting an unsupported format (screenshot, branding, changeTracking); setting waitFor, location, mobile, or a non-basic/auto proxy — parse uploads reject all of those. **Supported file types:** .html, .htm, .xhtml, .pdf, .docx, .doc, .odt, .rtf, .xlsx, .xls **Unsupported options:** actions, screenshot/branding/changeTracking formats, waitFor > 0, location, mobile, proxy values other than "auto" or "basic". **CRITICAL - Format Selection (same rules as firecrawl_scrape):** When the user asks for SPECIFIC data points from a document, you MUST use JSON format with a schema. Only use markdown when the user needs the ENTIRE document content. **Use JSON format when the user asks for:** - Specific fields, parameters, or values from a form / PDF / spreadsheet - Prices, numbers, or other structured data - Lists of items or properties **Use markdown format when:** - User wants to read, summarize, or analyze the full document - User explicitly asks for the complete content **Handling PDFs:** Add \

readOnlyHint true openWorldHint false
firecrawl_monitor_create
unchecked low

Create a Firecrawl monitor — a recurring scrape or crawl that diffs each result against the last retained snapshot. Pass the full request body. Required fields: \

readOnlyHint false openWorldHint true
firecrawl_monitor_list
unchecked low

List all Firecrawl monitors for the authenticated account. **Usage Example:** \

readOnlyHint true openWorldHint false destructiveHint true
firecrawl_monitor_get
unchecked low

Get a single monitor by ID. **Usage Example:** \

readOnlyHint true openWorldHint false destructiveHint true
firecrawl_monitor_update
unchecked low

Update a monitor. Pass any subset of fields to patch: \

readOnlyHint false openWorldHint true destructiveHint true
firecrawl_monitor_delete
unchecked low

Permanently delete a monitor and stop its schedule. This cannot be undone. **Usage Example:** \

readOnlyHint false openWorldHint true destructiveHint true
firecrawl_monitor_run
unchecked low

Trigger a monitor check immediately, outside its normal schedule. Returns the queued check. **Usage Example:** \

readOnlyHint false openWorldHint true
firecrawl_monitor_checks
unchecked low

List historical checks for a monitor. **Usage Example:** \

readOnlyHint true openWorldHint false
firecrawl_monitor_check
unchecked low

Get a single check with page-level diff results. Filter \

readOnlyHint true openWorldHint false

Permissions 2

network medium
Server uses network capabilities via: fetch()
env_vars low
Server uses env_vars capabilities via: process.env

Scan Findings 63

info
package.json metadata manifest_parser · 100%
info
Tool: firecrawl_scrape manifest_parser · 75%
info
Tool: firecrawl_map manifest_parser · 75%
info
Tool: firecrawl_search manifest_parser · 75%
info
Tool: firecrawl_search_feedback manifest_parser · 75%
info
Tool: firecrawl_crawl manifest_parser · 75%
info
Tool: firecrawl_check_crawl_status manifest_parser · 75%
info
Tool: firecrawl_extract manifest_parser · 75%
info
Tool: firecrawl_agent manifest_parser · 75%
info
Tool: firecrawl_agent_status manifest_parser · 75%
info
Tool: firecrawl_browser_create manifest_parser · 75%
info
Tool: firecrawl_browser_execute manifest_parser · 75%
info
Tool: firecrawl_browser_delete manifest_parser · 75%
info
Tool: firecrawl_browser_list manifest_parser · 75%
info
Tool: firecrawl_interact manifest_parser · 75%
info
Tool: firecrawl_interact_stop manifest_parser · 75%
info
Tool: firecrawl_parse manifest_parser · 75%
info
Tool: firecrawl_monitor_create manifest_parser · 75%
info
Tool: firecrawl_monitor_list manifest_parser · 75%
info
Tool: firecrawl_monitor_get manifest_parser · 75%
info
Tool: firecrawl_monitor_update manifest_parser · 75%
info
Tool: firecrawl_monitor_delete manifest_parser · 75%
info
Tool: firecrawl_monitor_run manifest_parser · 75%
info
Tool: firecrawl_monitor_checks manifest_parser · 75%
info
Tool: firecrawl_monitor_check manifest_parser · 75%
info
Required env vars (9) manifest_parser · 80%
info
Tool 'firecrawl_scrape' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_map' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_search' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_search_feedback' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_crawl' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_check_crawl_status' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_extract' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_agent' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_agent_status' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_browser_create' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_browser_execute' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_browser_delete' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_browser_list' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_interact' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_interact_stop' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_parse' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_create' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_list' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_get' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_update' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_delete' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_run' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_checks' annotations are consistent annotation_checker · 80%
info
Tool 'firecrawl_monitor_check' annotations are consistent annotation_checker · 80%
critical
Tool poisoning in 'firecrawl_scrape': Directive language: 'you must' poisoning · 85%
critical
Tool poisoning in 'firecrawl_parse': Directive language: 'you must' poisoning · 85%
high
Tool shadowing in 'firecrawl_scrape': Directive: 'you must call JSON' cross_tool_detector · 90%
high
Tool shadowing in 'firecrawl_parse': Directive: 'you must call JSON' cross_tool_detector · 90%
medium
Permission: network access detected permission_analyzer · 70%
low
Permission: env_vars access detected permission_analyzer · 90%
info
SLSA Build Level 3 detected slsa_assessor · 85%
info
Could not connect to MCP server for output poisoning scan output_poisoning · 100%
info
Could not connect to MCP server for behavioral verification behavioral_verifier · 100%
info
SBOM generated: 6 components sbom_generator · 100%
info
MITRE ATLAS technique coverage summary atlas_annotator · 100%
info
ATLAS: Adversarial ML Supply Chain (AML.T0043) atlas_annotator · 100%
info
ATLAS: Poison Training Data (AML.T0020) atlas_annotator · 100%