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
* add query format support to scrape tool
* bump version to 3.12.0
* prefer markdown over query format in scrape tool description
MCP agents can read and reason over scraped content directly —
the query format is redundant when the agent already has the
scrape result. default guidance now recommends markdown.
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.11.0",
3
+
"version": "3.12.0",
4
4
"description": "MCP server for Firecrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, search, batch processing, structured data extraction, and LLM-powered content analysis.",
@@ -390,7 +400,18 @@ If JSON extraction returns empty, minimal, or just navigation content, the page
390
400
}
391
401
}
392
402
\`\`\`
393
-
**Usage Example (markdown format - ONLY when full content genuinely needed):**
403
+
404
+
**Prefer markdown format by default.** You can read and reason over the full page content directly — no need for an intermediate query step. Use markdown for questions about page content, factual lookups, and any task where you need to understand the page.
405
+
406
+
**Use JSON format when user needs:**
407
+
- Structured data with specific fields (extract all products with name, price, description)
408
+
- Data in a specific schema for downstream processing
409
+
410
+
**Use query format only when:**
411
+
- The page is extremely long and you need a single targeted answer without processing the full content
412
+
- You want a quick factual answer and don't need to retain the page content
413
+
414
+
**Usage Example (markdown format - default for most tasks):**
0 commit comments