firecrawl-mcp 3.10.3 → 3.14.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.
- package/LICENSE +0 -0
- package/README.md +21 -17
- package/dist/index.js +454 -14
- package/package.json +19 -20
- package/dist/index-v1.js +0 -1313
- package/dist/index.test.js +0 -255
- package/dist/jest.setup.js +0 -58
- package/dist/server-v1.js +0 -1154
- package/dist/server-v2.js +0 -1067
- package/dist/src/index.js +0 -1053
- package/dist/src/index.test.js +0 -225
- package/dist/versioned-server.js +0 -203
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -8,15 +8,16 @@
|
|
|
8
8
|
|
|
9
9
|
# Firecrawl MCP Server
|
|
10
10
|
|
|
11
|
-
A Model Context Protocol (MCP) server implementation that integrates with [Firecrawl](https://github.com/firecrawl/firecrawl) for
|
|
11
|
+
A Model Context Protocol (MCP) server implementation that integrates with [Firecrawl](https://github.com/firecrawl/firecrawl) for searching, scraping, and interacting with the web.
|
|
12
12
|
|
|
13
13
|
> Big thanks to [@vrknetha](https://github.com/vrknetha), [@knacklabs](https://www.knacklabs.ai) for the initial implementation!
|
|
14
14
|
|
|
15
15
|
## Features
|
|
16
16
|
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
-
|
|
17
|
+
- Search the web and get full page content
|
|
18
|
+
- Scrape any URL into clean, structured data
|
|
19
|
+
- Interact with pages — click, navigate, and operate
|
|
20
|
+
- Deep research with autonomous agent
|
|
20
21
|
- Cloud browser sessions with agent-browser automation
|
|
21
22
|
- Automatic retries and rate limiting
|
|
22
23
|
- Cloud and self-hosted support
|
|
@@ -317,19 +318,21 @@ Use this guide to select the right tool for your task:
|
|
|
317
318
|
- **If you want to search the web for info:** use **search**
|
|
318
319
|
- **If you need complex research across multiple unknown sources:** use **agent**
|
|
319
320
|
- **If you want to analyze a whole site or section:** use **crawl** (with limits!)
|
|
320
|
-
- **If you need interactive browser automation** (click, type, navigate): use **
|
|
321
|
+
- **If you need interactive browser automation** (click, type, navigate): use **scrape** + **interact**
|
|
322
|
+
- **If you need a raw CDP browser session** (advanced): use **browser** (deprecated)
|
|
321
323
|
|
|
322
324
|
### Quick Reference Table
|
|
323
325
|
|
|
324
326
|
| Tool | Best for | Returns |
|
|
325
327
|
| ------------ | ----------------------------------- | -------------------------- |
|
|
326
328
|
| scrape | Single page content | JSON (preferred) or markdown |
|
|
329
|
+
| interact | Interact with a scraped page | Execution result |
|
|
327
330
|
| batch_scrape | Multiple known URLs | JSON (preferred) or markdown[] |
|
|
328
331
|
| map | Discovering URLs on a site | URL[] |
|
|
329
332
|
| crawl | Multi-page extraction (with limits) | markdown/html[] |
|
|
330
333
|
| search | Web search for info | results[] |
|
|
331
334
|
| agent | Complex multi-source research | JSON (structured data) |
|
|
332
|
-
| browser | Interactive multi-step automation
|
|
335
|
+
| browser | Interactive multi-step automation (deprecated) | Session with live browser |
|
|
333
336
|
|
|
334
337
|
### Format Selection Guide
|
|
335
338
|
|
|
@@ -816,16 +819,11 @@ Check the status of an agent job and retrieve results when complete. Use this to
|
|
|
816
819
|
- `completed`: Research finished - response includes the extracted data
|
|
817
820
|
- `failed`: An error occurred
|
|
818
821
|
|
|
819
|
-
### 11. Browser Create (`firecrawl_browser_create`)
|
|
822
|
+
### 11. Browser Create (`firecrawl_browser_create`) — Deprecated
|
|
820
823
|
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
**Best for:**
|
|
824
|
+
> **Deprecated:** Prefer `firecrawl_scrape` + `firecrawl_interact` instead. Interact lets you scrape a page and then click, fill forms, and navigate without managing sessions manually.
|
|
824
825
|
|
|
825
|
-
|
|
826
|
-
- Interactive workflows that require maintaining state across actions
|
|
827
|
-
- Testing and debugging web pages in a live browser
|
|
828
|
-
- Saving and reusing browser state with profiles
|
|
826
|
+
Create a cloud browser session for interactive automation.
|
|
829
827
|
|
|
830
828
|
**Arguments:**
|
|
831
829
|
|
|
@@ -852,7 +850,9 @@ Create a cloud browser session for interactive automation.
|
|
|
852
850
|
|
|
853
851
|
- Session ID, CDP URL, and live view URL
|
|
854
852
|
|
|
855
|
-
### 12. Browser Execute (`firecrawl_browser_execute`)
|
|
853
|
+
### 12. Browser Execute (`firecrawl_browser_execute`) — Deprecated
|
|
854
|
+
|
|
855
|
+
> **Deprecated:** Prefer `firecrawl_scrape` + `firecrawl_interact` instead.
|
|
856
856
|
|
|
857
857
|
Execute code in a browser session. Supports agent-browser commands (bash), Python, or JavaScript.
|
|
858
858
|
|
|
@@ -894,7 +894,9 @@ Execute code in a browser session. Supports agent-browser commands (bash), Pytho
|
|
|
894
894
|
}
|
|
895
895
|
```
|
|
896
896
|
|
|
897
|
-
### 13. Browser List (`firecrawl_browser_list`)
|
|
897
|
+
### 13. Browser List (`firecrawl_browser_list`) — Deprecated
|
|
898
|
+
|
|
899
|
+
> **Deprecated:** Prefer `firecrawl_scrape` + `firecrawl_interact` instead.
|
|
898
900
|
|
|
899
901
|
List browser sessions, optionally filtered by status.
|
|
900
902
|
|
|
@@ -907,7 +909,9 @@ List browser sessions, optionally filtered by status.
|
|
|
907
909
|
}
|
|
908
910
|
```
|
|
909
911
|
|
|
910
|
-
### 14. Browser Delete (`firecrawl_browser_delete`)
|
|
912
|
+
### 14. Browser Delete (`firecrawl_browser_delete`) — Deprecated
|
|
913
|
+
|
|
914
|
+
> **Deprecated:** Prefer `firecrawl_scrape` + `firecrawl_interact` instead.
|
|
911
915
|
|
|
912
916
|
Destroy a browser session.
|
|
913
917
|
|