firecrawl-mcp 3.10.1 → 3.10.2

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 +0 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -373,7 +373,6 @@ ${SAFE_MODE
373
373
  const res = await client.scrape(String(url), {
374
374
  ...cleaned,
375
375
  origin: ORIGIN,
376
- integration: ORIGIN,
377
376
  });
378
377
  return asText(res);
379
378
  },
@@ -427,7 +426,6 @@ Map a website to discover all indexed URLs on the site.
427
426
  const res = await client.map(String(url), {
428
427
  ...cleaned,
429
428
  origin: ORIGIN,
430
- integration: ORIGIN,
431
429
  });
432
430
  return asText(res);
433
431
  },
@@ -519,7 +517,6 @@ The query also supports search operators, that you can use if needed to refine t
519
517
  const res = await client.search(query, {
520
518
  ...cleaned,
521
519
  origin: ORIGIN,
522
- integration: ORIGIN,
523
520
  });
524
521
  return asText(res);
525
522
  },
@@ -592,7 +589,6 @@ server.addTool({
592
589
  const res = await client.crawl(String(url), {
593
590
  ...cleaned,
594
591
  origin: ORIGIN,
595
- integration: ORIGIN,
596
592
  });
597
593
  return asText(res);
598
594
  },
@@ -681,7 +677,6 @@ Extract structured information from web pages using LLM capabilities. Supports b
681
677
  enableWebSearch: a.enableWebSearch,
682
678
  includeSubdomains: a.includeSubdomains,
683
679
  origin: ORIGIN,
684
- integration: ORIGIN,
685
680
  });
686
681
  const res = await client.extract(extractBody);
687
682
  return asText(res);
@@ -774,7 +769,6 @@ Then poll with \`firecrawl_agent_status\` every 15-30 seconds for at least 2-3 m
774
769
  const res = await client.startAgent({
775
770
  ...agentBody,
776
771
  origin: ORIGIN,
777
- integration: ORIGIN,
778
772
  });
779
773
  return asText(res);
780
774
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl-mcp",
3
- "version": "3.10.1",
3
+ "version": "3.10.2",
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.",
5
5
  "type": "module",
6
6
  "mcpName": "io.github.firecrawl/firecrawl-mcp-server",