firecrawl-mcp
Server Details
Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolsfirecrawl_parseARead-onlyInspect
Parse one supported document into markdown, HTML, links, summary, targeted answers, or JSON matching a schema. Supported inputs include common HTML, PDF, Word, RTF, OpenDocument, and spreadsheet files; PDF parsing can be bounded with pdfOptions.maxPages.
Local MCP reads filePath from the server filesystem. Hosted MCP uses two calls: first provide filePath to receive upload instructions, upload locally, then call again with the returned uploadRef; do not send both fields together. Remote web URLs belong in firecrawl_scrape.
Set redactPII to request redaction of personally identifiable information in the returned content. zeroDataRetention requires an eligible authenticated account; omit it for anonymous keyless use. Returns upload instructions for hosted phase one or parsed document content for the final call.
| Name | Required | Description | Default |
|---|---|---|---|
| proxy | No | ||
| maxAge | No | ||
| formats | No | ||
| parsers | No | ||
| filePath | No | ||
| redactPII | No | ||
| uploadRef | No | ||
| pdfOptions | No | ||
| contentType | No | ||
| excludeTags | No | ||
| includeTags | No | ||
| jsonOptions | No | ||
| queryOptions | No | ||
| storeInCache | No | ||
| onlyMainContent | No | ||
| declaredSizeBytes | No | ||
| zeroDataRetention | No | ||
| removeBase64Images | No | ||
| skipTlsVerification | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false; description builds on this by disclosing the local vs hosted two-phase upload flow, pdfOptions.maxPages bounding, redactPII behavior, and the zeroDataRetention account requirement. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the main purpose, then compactly covers the most important usage variations and options in four sentences. No repetition of schema or annotation data.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex 19-parameter tool with no output schema, the description covers core behavior, return value, local/hosted workflows, and exclusions. It does not mention several secondary options (e.g., includeTags/excludeTags, onlyMainContent, proxy, maxAge), but those are not central to selecting the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description compensates for 0% schema coverage by explaining the local/hosted filePath/uploadRef relationship, pdfOptions.maxPages, redactPII, zeroDataRetention eligibility, and the output types (markdown/html/links/summary/query/json). It leaves some self-explanatory options (proxy, maxAge, tags) unprompted, but the semantically opaque parameters are mostly clarified.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-object statement: 'Parse one supported document into markdown, HTML, links, summary, targeted answers, or JSON matching a schema.' It also distinguishes itself from sibling tools by explicitly stating 'Remote web URLs belong in firecrawl_scrape.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says when to use the tool (supported local documents) and what not to use it for ('Remote web URLs belong in firecrawl_scrape'). It further gives usage flow for local vs hosted MCP, including the two-call upload instruction and the rule 'do not send both fields together.'
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
firecrawl_scrapeARead-onlyInspect
Retrieve and extract content from one supplied URL through Firecrawl. Use this when the request identifies a page and needs its content or defined fields. It can return markdown, HTML, links, screenshots, branding data, a targeted answer, or JSON matching a supplied schema; JSON is useful when the requested result has defined fields, while markdown preserves readable page content.
This tool operates on a known page. For a set of pages use firecrawl_crawl, and to discover page URLs use firecrawl_map or firecrawl_search. Options include JavaScript render delay, cache age, main-content filtering, PII redaction, and lockdown cache-only retrieval. Browser actions may change the live page when interactive actions are enabled.
Firecrawl may reuse recently indexed content instead of refetching the page, and the reuse window varies by domain. Set maxAge: 0 to force a live fetch, or a smaller maxAge to bound how stale reused content may be. A successful response does not by itself confirm that the state it describes is still current.
Returns the selected content formats and page metadata.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| proxy | No | ||
| maxAge | No | ||
| mobile | No | ||
| formats | No | ||
| parsers | No | ||
| profile | No | ||
| waitFor | No | ||
| location | No | ||
| lockdown | No | ||
| redactPII | No | ||
| pdfOptions | No | ||
| excludeTags | No | ||
| includeTags | No | ||
| jsonOptions | No | ||
| queryOptions | No | ||
| storeInCache | No | ||
| onlyMainContent | No | ||
| screenshotOptions | No | ||
| zeroDataRetention | No | ||
| removeBase64Images | No | ||
| skipTlsVerification | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint=true, but the description states 'Browser actions may change the live page when interactive actions are enabled,' implying a write/modification capability. This directly contradicts the read-only annotation. Additionally, the description does not reconcile this contradiction, leaving the agent uncertain about side effects. Per the rubric, a score of 1 is required due to the annotation contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is moderately long but well-structured into four logical paragraphs: purpose, alternatives, options, and caching caveats. It front-loads the primary purpose in the first sentence. Some redundancy exists (e.g., repeated mention of 'known page'), but for a tool with 22 parameters, the length is justified and every paragraph serves a distinct informational goal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (22 params, no output schema, sparse annotations), the description covers a lot: usage context, format selection guidance, alternative tools, caching behavior with maxAge, and a caveat about staleness. It also states what is returned ('selected content formats and page metadata'). It is not perfect—return value details are minimal and the readOnly contradiction undermines completeness—but overall it is rich and situationally useful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description must compensate for the 22 undocumented parameters. It does add meaningful semantics for key params like maxAge ('Set maxAge: 0 to force a live fetch'), formats (markdown vs JSON), and option categories like main-content filtering and PII redaction. However, many parameters (proxy, location, mobile, profile, screenshotOptions, etc.) remain unexplained, and the generic 'Options include' phrase does not fully cover the breadth. This is adequate but leaves clear gaps.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Retrieve and extract content from one supplied URL through Firecrawl.' It names a specific verb-resource pair, differentiates from sibling tools by noting this operates on a known page while firecrawl_crawl handles sets of pages and firecrawl_map/firecrawl_search discover URLs, and enumerates concrete output formats (markdown, HTML, screenshots, JSON). This is specific and unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use this when the request identifies a page and needs its content or defined fields.' It also provides clear alternatives: for a set of pages use firecrawl_crawl, and for discovery use firecrawl_map or firecrawl_search. This gives the agent explicit decision criteria relative to sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
firecrawl_searchARead-onlyInspect
Search web, news, or image sources and return ranked results. Operators include quoted phrases, -term, site:host, inurl:term, intitle:term, and related:host; the set is non-exhaustive. includeDomains and excludeDomains are mutually exclusive hostname filters; categories limit results to GitHub, research, PDF, or developer sources.
For a programming question, add categories: ["developer"]. It searches an index of repositories, GitHub issues, merged pull requests, repository READMEs, and curated documentation sites, and returns the hits in data.web with category: "developer".
categories: ["research"] restricts these web results to research-affiliated websites and returns page snippets. The firecrawl_research_* tools are a separate surface that searches paper abstracts and full text across biomedical (PubMed, bioRxiv, medRxiv) and arXiv literature.
Each web result is a title, URL, and description, not the page. Add scrapeOptions to attach page content in the same call; those fetches ignore maxAge, so use firecrawl_scrape when you need a live fetch. Returns source-type result groups and usage metadata. Authenticated responses can include an id for optional search feedback.
| Name | Required | Description | Default |
|---|---|---|---|
| tbs | No | ||
| limit | No | ||
| query | Yes | ||
| filter | No | ||
| sources | No | ||
| location | No | ||
| categories | No | ||
| enterprise | No | ||
| highlights | No | ||
| scrapeOptions | No | ||
| excludeDomains | No | ||
| includeDomains | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark read-only and non-destructive, and the description adds meaningful behavior: result snippets are not page content, scrapeOptions fetches bypass maxAge, developer category results land in data.web with category: 'developer', and authenticated responses may include an id. None of this contradicts the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than minimal but front-loads the core purpose in the first sentence and organizes topics into purpose, category guidance, and result/scrape behavior. It is dense and does not contain filler, though it could be trimmed around peripheral details such as the optional authenticated id.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 12 parameters and no output schema, the description covers the main call flow, return shape (ranked title/URL/description groups), category behavior, and scrape-vs-scrapeOptions tradeoff. It omits guidance on several less-common search parameters, but is complete enough for correct basic invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The description gives real meaning for query operators, includeDomains/excludeDomains mutual exclusivity, sources, categories, and scrapeOptions, which is important because schema description coverage is 0%. However, several parameters remain unexplained (tbs, filter, location, enterprise, highlights, limit), so the description only partially compensates for the schema's lack of descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Opens with a specific verb and resource: 'Search web, news, or image sources and return ranked results.' It further distinguishes search results from page content by stating each result is a title, URL, and description, and points to firecrawl_scrape for live fetches. This is enough to separate it from the scrape/parse siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Gives explicit when-to-use guidance: add categories: ['developer'] for programming questions, and use categories: ['research'] selectively. It names firecrawl_research_* as a separate surface for biomedical/arXiv literature and explicitly says to use firecrawl_scrape when a live fetch is needed because scrapeOptions fetches ignore maxAge.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Changed
firecrawl_search3 fields changed- added
Input schema / properties / limit / maximumAdded value: +100 - added
Input schema / properties / limit / minimumAdded value: +1 - changed
Input schema / properties / limit / typePrevious value: -"number"New value: +"integer"
1 tool update
- Changed
firecrawl_search1 field changed- changed
Input schema / properties / categories / items / enumPrevious value: -[ - "github", - "research", - "pdf" -]New value: +[ + "github", + "research", + "pdf", + "developer" +]
23 tool updates
- Removed
firecrawl_agent - Removed
firecrawl_agent_status - Removed
firecrawl_check_crawl_status - Removed
firecrawl_crawl - Removed
firecrawl_extract - Removed
firecrawl_feedback - Removed
firecrawl_interact - Removed
firecrawl_interact_stop - Removed
firecrawl_map - Removed
firecrawl_monitor_check - Removed
firecrawl_monitor_checks - Removed
firecrawl_monitor_create - Removed
firecrawl_monitor_delete - Removed
firecrawl_monitor_get - Removed
firecrawl_monitor_list - Removed
firecrawl_monitor_run - Removed
firecrawl_monitor_update - Removed
firecrawl_research_inspect_paper - Removed
firecrawl_research_read_paper - Removed
firecrawl_research_related_papers - Removed
firecrawl_research_search_github - Removed
firecrawl_research_search_papers - Removed
firecrawl_search_feedback
1 tool update
- Changed
firecrawl_search1 field changed- added
Input schema / properties / highlightsAdded value: +{ + "type": "boolean" +}
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.MIT

industrylens-mcpofficial
AlicenseNot gradedqualityBmaintenanceBrowse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.MIT- AlicenseNot gradedqualityCmaintenanceEnables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.MIT
- AlicenseAqualityAmaintenanceDetects hiring intent signals by scanning job boards for specific companies. Returns structured role data for outbound sales targeting.11961MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Parse handles local/documents, scrape handles a single remote URL, and search handles web queries. The remote-vs-local distinction prevents parse/scrape overlap, and search's result-list purpose is clear despite optional scrapeOptions.
All tools use the same firecrawl_ prefix with lowercase verb names: parse, scrape, and search. This is a consistent, parallel, and predictable naming scheme.
Three focused tools is within the well-scoped range and each tool earns its place, but the server feels slightly lean for a Firecrawl surface because descriptions reference crawl and map operations that are not included.
Single-page scraping, document parsing, and search are covered, but the descriptions explicitly point to firecrawl_crawl and firecrawl_map, which are absent. This leaves site-wide crawling and URL discovery as significant gaps that will cause multi-page extraction tasks to fail.