firecrawl-mcp 3.14.1 → 3.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -252,6 +252,7 @@ const scrapeParamsSchema = z.object({
252
252
  queryOptions: z
253
253
  .object({
254
254
  prompt: z.string().max(10000),
255
+ mode: z.enum(['directQuote', 'freeform']).default('freeform'),
255
256
  })
256
257
  .optional(),
257
258
  screenshotOptions: z
@@ -389,6 +390,7 @@ If JSON extraction returns empty, minimal, or just navigation content, the page
389
390
  **Use query format only when:**
390
391
  - The page is extremely long and you need a single targeted answer without processing the full content
391
392
  - You want a quick factual answer and don't need to retain the page content
393
+ - Set \`queryOptions.mode\` to \`"directQuote"\` when you need verbatim page text; otherwise it defaults to \`"freeform"\`
392
394
 
393
395
  **Usage Example (markdown format - default for most tasks):**
394
396
  \`\`\`json
@@ -1259,6 +1261,7 @@ if (process.env.CLOUD_SERVICE !== 'true') {
1259
1261
  queryOptions: z
1260
1262
  .object({
1261
1263
  prompt: z.string().max(10000),
1264
+ mode: z.enum(['directQuote', 'freeform']).default('freeform'),
1262
1265
  })
1263
1266
  .optional(),
1264
1267
  parsers: z.array(z.enum(['pdf'])).optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl-mcp",
3
- "version": "3.14.1",
3
+ "version": "3.15.0",
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.",
5
5
  "type": "module",
6
6
  "mcpName": "io.github.firecrawl/firecrawl-mcp-server",