real-browser-mcp-server 1.2.1 → 1.2.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/README.md +14 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -29,6 +29,20 @@ npm install
29
29
  npx patchright install chromium
30
30
  ```
31
31
 
32
+ ### 🐳 Run via Docker (Recommended for Servers)
33
+
34
+ We automatically build and publish a production-ready Docker image to GitHub Container Registry (GHCR).
35
+
36
+ ```bash
37
+ # Pull the latest image
38
+ docker pull ghcr.io/codeiva4u/real-browser-mcp-server:latest
39
+
40
+ # Run the MCP Server (Interactive stdio mode for AI IDEs)
41
+ docker run -i --rm ghcr.io/codeiva4u/real-browser-mcp-server:latest
42
+ ```
43
+
44
+ *(Note: When running via Docker, it automatically runs in headless mode.)*
45
+
32
46
  ---
33
47
 
34
48
  ## 🚀 Key Evasion & Stealth Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "real-browser-mcp-server",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "MCP Server for Real Browser - Patchright (undetected Playwright fork) with Stealth Mode, Ad Blocker, and Turnstile Auto-Solver for undetectable web automation.",
5
5
  "main": "dist/lib/cjs/index.js",
6
6
  "module": "lib/esm/index.mjs",