mcp-camoufox 0.5.0 → 0.5.1
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/README.md +29 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
|
-
The most feature-rich stealth browser MCP server. **
|
|
14
|
+
The most feature-rich stealth browser MCP server. **79 tools** for full browser control powered by [Camoufox](https://github.com/daijro/camoufox) — a Firefox fork with C++ level anti-detection that bypasses Cloudflare, bot detection, and anti-automation.
|
|
15
15
|
|
|
16
16
|
> **One command. No Python. No manual setup. Everything auto-installs.**
|
|
17
17
|
|
|
@@ -39,7 +39,7 @@ claude mcp add camoufox -- npx -y mcp-camoufox@latest
|
|
|
39
39
|
| redf0x1/camofox-mcp | 45 | Yes | No (clone) | Yes |
|
|
40
40
|
| Sekinal/camoufox-mcp | 49 | Yes | No (clone) | Yes |
|
|
41
41
|
| Playwright CLI | 60+ | No | Yes | Yes |
|
|
42
|
-
| **[mcp-camoufox](https://github.com/RobithYusuf/mcp-camoufox)** | **
|
|
42
|
+
| **[mcp-camoufox](https://github.com/RobithYusuf/mcp-camoufox)** | **79** | **Yes** | **Yes** | **Yes** |
|
|
43
43
|
|
|
44
44
|
## Setup
|
|
45
45
|
|
|
@@ -234,7 +234,7 @@ Or via UI: Agent Panel > `...` > MCP Servers > Manage MCP Servers > View raw con
|
|
|
234
234
|
|
|
235
235
|
That's all. Camoufox browser binary (~80MB) downloads automatically on first launch.
|
|
236
236
|
|
|
237
|
-
## All
|
|
237
|
+
## All 79 Tools
|
|
238
238
|
|
|
239
239
|
### Browser Lifecycle (2)
|
|
240
240
|
|
|
@@ -395,6 +395,30 @@ That's all. Camoufox browser binary (~80MB) downloads automatically on first lau
|
|
|
395
395
|
| `console_start` / `console_get` | Capture and retrieve browser console messages |
|
|
396
396
|
| `network_start` / `network_get` | Capture and retrieve network requests |
|
|
397
397
|
|
|
398
|
+
### Compound (reduce round-trips) (4)
|
|
399
|
+
|
|
400
|
+
| Tool | Description |
|
|
401
|
+
|------|-------------|
|
|
402
|
+
| `wait_and_snapshot` | Wait for selector/text + return snapshot in one call |
|
|
403
|
+
| `back_and_snapshot` | Navigate back + return snapshot |
|
|
404
|
+
| `reload_and_snapshot` | Reload page + return snapshot |
|
|
405
|
+
| `click_and_snapshot` | Click + wait + return snapshot. Perfect for buttons that trigger navigation. |
|
|
406
|
+
|
|
407
|
+
### Smart Selectors (skip snapshot) (3)
|
|
408
|
+
|
|
409
|
+
| Tool | Description |
|
|
410
|
+
|------|-------------|
|
|
411
|
+
| `find_by_text` | Find element by visible text, returns ref. Skip `browser_snapshot` when you know exact text. |
|
|
412
|
+
| `find_by_label` | Find input by label text, returns ref. |
|
|
413
|
+
| `find_by_placeholder` | Find input by placeholder, returns ref. |
|
|
414
|
+
|
|
415
|
+
### Session Portability (2)
|
|
416
|
+
|
|
417
|
+
| Tool | Description |
|
|
418
|
+
|------|-------------|
|
|
419
|
+
| `cookie_export` | Export all cookies as JSON (for transfer) |
|
|
420
|
+
| `cookie_import` | Import cookies from JSON (restore session) |
|
|
421
|
+
|
|
398
422
|
### Scraping & Extraction (4)
|
|
399
423
|
|
|
400
424
|
| Tool | Description |
|
|
@@ -404,13 +428,14 @@ That's all. Camoufox browser binary (~80MB) downloads automatically on first lau
|
|
|
404
428
|
| `extract_table` | Extract HTML table as JSON array with auto-detected headers |
|
|
405
429
|
| `scrape_page` | Smart scraper: auto-extract main content (strips nav/footer), links, meta, headings. Smart truncation at paragraph boundary. |
|
|
406
430
|
|
|
407
|
-
### Debug (
|
|
431
|
+
### Debug (4)
|
|
408
432
|
|
|
409
433
|
| Tool | Description |
|
|
410
434
|
|------|-------------|
|
|
411
435
|
| `server_status` | Health check: browser status, tabs, URL |
|
|
412
436
|
| `get_page_errors` | JS errors from page |
|
|
413
437
|
| `export_har` | Export network traffic as HAR file |
|
|
438
|
+
| `page_stats` | Element count, page size, load metrics + extraction strategy recommendation |
|
|
414
439
|
|
|
415
440
|
## Examples
|
|
416
441
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-camoufox",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "MCP server for stealth browser automation via Camoufox —
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "MCP server for stealth browser automation via Camoufox — 79 tools, Chrome DevTools MCP-level power with anti-bot stealth",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|