You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "firecrawl-mcp",
3
-
"version": "3.20.1",
3
+
"version": "3.20.2",
4
4
"description": "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.",
@@ -638,6 +639,7 @@ If JSON extraction returns empty, minimal, or just navigation content, the page
638
639
**Branding format:** Extracts comprehensive brand identity (colors, fonts, typography, spacing, logo, UI components) for design analysis or style replication.
639
640
**Performance:** Add maxAge parameter for 500% faster scrapes using cached data.
640
641
**Lockdown mode:** Set \`lockdown: true\` to serve the request only from the existing index/cache without any outbound network request. For air-gapped or compliance-constrained use where the request URL itself is considered sensitive. Errors on cache miss. Billed at 5 credits.
642
+
**Privacy:** Set \`redactPII: true\` to return content with personally identifiable information redacted.
641
643
**Returns:** JSON structured data, markdown, branding profile, or other formats as specified.
642
644
${
643
645
SAFE_MODE
@@ -1587,6 +1589,7 @@ if (process.env.CLOUD_SERVICE !== 'true') {
1587
1589
})
1588
1590
.optional(),
1589
1591
onlyMainContent: z.boolean().optional(),
1592
+
redactPII: z.boolean().optional(),
1590
1593
includeTags: z.array(z.string()).optional(),
1591
1594
excludeTags: z.array(z.string()).optional(),
1592
1595
removeBase64Images: z.boolean().optional(),
@@ -1633,6 +1636,7 @@ This is the fastest and most reliable way to extract content from a document on
**Unsupported options:** actions, screenshot/branding/changeTracking formats, waitFor > 0, location, mobile, proxy values other than "auto" or "basic".
1639
+
**Privacy:** Set \`redactPII: true\` to return content with personally identifiable information redacted.
1636
1640
1637
1641
**CRITICAL - Format Selection (same rules as firecrawl_scrape):**
1638
1642
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.
0 commit comments