Skip to main content

Firecrawl MCP tools

Choose a Firecrawl MCP tool and understand its availability and operating behavior.
5 min read

Firecrawl MCP exposes tools for finding, extracting, interacting with, and monitoring web content. Your MCP client receives the exact input schema for every available tool when it connects.

Tool availability#

Connection modeAvailable tools
Hosted OAuthFull tool surface, subject to plan and team policy
Hosted API keyFull tool surface, subject to plan and team policy
Hosted keylessfirecrawl_search, firecrawl_scrape, and firecrawl_parse
Local with the Firecrawl cloud APIAPI-backed tools; direct local-file Parse is unavailable
Local with a self-hosted Firecrawl APITools supported by the services enabled in that deployment

Start with Get Started and pick For Agents or For Humans. Some optional tools can be disabled by environment or team policy.

Choose a tool#

JobToolUse it when
Read one pagefirecrawl_scrapeYou know the URL and need page content or structured fields.
Extract structured datafirecrawl_scrape with JSON formatYou have the URL and want data matching a prompt or JSON schema.
Discover site URLsfirecrawl_mapYou need to find pages before deciding what to extract.
Search the webfirecrawl_searchYou have a query rather than a known URL.
Parse a filefirecrawl_parseYou need content from a PDF, document, spreadsheet, or HTML file.
Extract many pagesfirecrawl_crawl and firecrawl_check_crawl_statusYou need to traverse a site or section. The crawl tool polls the job to a terminal state before returning.
Run autonomous researchfirecrawl_agent and firecrawl_agent_statusThe task spans multiple sources and the exact pages are not known.
Operate a live pagefirecrawl_interact and firecrawl_interact_stopYou need clicks, form fills, navigation, or dynamic-page extraction.
Search scientific literaturefirecrawl_research_*You need to find papers, read passages from inside one, or follow citations. Searches the Research Index of PubMed, bioRxiv, medRxiv, and arXiv paper abstracts.
Answer a programming questionfirecrawl_developer_searchYou need primary-source answers from issues, merged pull requests, READMEs, and curated docs.
Monitor changesfirecrawl_monitor_*You need recurring checks, diffs, and webhook or email notifications.
Send product feedbackfirecrawl_search_feedback and firecrawl_feedbackYou want to rate search results or report endpoint-level quality.
Note

The former Extract MCP tool is deprecated and is not part of the current tool surface. Use Scrape with JSON format for a known page, or Agent when Firecrawl must discover the sources. See Choosing the Data Extractor for the full comparison.

Tip

Use the schema shown by your MCP client for the current arguments. The feature guides below explain the underlying Firecrawl behavior without duplicating those schemas here.

Important behavior#

Parse a local file

A local MCP server connected to a self-hosted Firecrawl API can read filePath directly. The hosted server cannot read files from your machine, so it uses a two-call handoff:

  1. Call firecrawl_parse with filePath to receive an upload command and uploadRef.
  2. Run the upload command on the machine that can read the file.
  3. Call firecrawl_parse again with the returned uploadRef.

The upload command uses a short-lived signed target and does not contain your Firecrawl API key. Use firecrawl_scrape for a public document URL.

Check a running crawl

firecrawl_crawl normally starts a crawl and polls it to a terminal state before returning. If that wait times out, resume the job with firecrawl_check_crawl_status and the crawl ID. Use the same status tool for a crawl created outside the current MCP call.

firecrawl_agent is asynchronous: it returns a job identifier, and firecrawl_agent_status checks that job until it completes or fails.

Close Interact sessions

Start with a url, or reuse the scrapeId from a previous Scrape call. When the workflow is finished, call firecrawl_interact_stop with the scrapeId to release the session.

Manage monitors safely

The firecrawl_monitor_* family creates, lists, updates, runs, and inspects recurring monitors. firecrawl_monitor_delete permanently removes a monitor and should be called only when the user explicitly intends to delete it.

Enable optional feedback tools

Set FIRECRAWL_NO_SEARCH_FEEDBACK=1 to prevent firecrawl_search_feedback from being registered. Set FIRECRAWL_NO_ENDPOINT_FEEDBACK=1 to prevent firecrawl_feedback from being registered.

Feature guides#

Troubleshooting#

  • A tool is missing: confirm the connection mode on Get Started, reconnect or restart the client, and check whether team policy disables optional tools.
  • The client returns 401: check the configured server URL first.
    • If the configured URL is /v2/mcp-oauth, sign in again through the client.
    • If it is /v2/mcp, either replace the API key on that server or update the existing server URL to /v2/mcp-oauth and complete sign-in.
    • Start a new client session after either change.
  • The client is rate-limited: review the current rate limits, wait for the retry interval, or move from keyless to authenticated access.