brave-real-browser-mcp-server 2.27.31 → 2.27.32

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 +39 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -11,7 +11,6 @@
11
11
 
12
12
  ```json
13
13
  {
14
- {
15
14
  "mcpServers": {
16
15
  "brave-real-browser": {
17
16
  "command": "npx",
@@ -41,6 +40,45 @@
41
40
  }
42
41
  }
43
42
  ```
43
+
44
+ ### Option 1: NPX (Recommended for Opencode AI IDEs)
45
+
46
+ ```json
47
+ {
48
+ "$schema": "https://opencode.ai/config.json",
49
+ "mcp": {
50
+ "brave-real-browser": {
51
+ "type": "local",
52
+ "command": ["npx", "-y", "brave-real-browser-mcp-server@latest"],
53
+ "environment": {
54
+ "headless": "false"
55
+ },
56
+ "enabled": true
57
+ }
58
+ }
59
+ }
60
+ ```
61
+
62
+ ### Option 2: ( Locle for Opencode AI IDEs)
63
+
64
+ ```json
65
+ {
66
+ "$schema": "https://opencode.ai/config.json",
67
+ "mcp": {
68
+ "brave-real-browser": {
69
+ "type": "local",
70
+ "command": ["node", "c: path hare "],
71
+ "environment": {
72
+ "headless": "false"
73
+ },
74
+ "enabled": true
75
+ }
76
+ }
77
+ }
78
+ ```
79
+
80
+
81
+
44
82
  **Config locations:**
45
83
  - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
46
84
  - **Mac:** `~/Library/Application Support/Claude/`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brave-real-browser-mcp-server",
3
- "version": "2.27.31",
3
+ "version": "2.27.32",
4
4
  "description": "🦁 MCP server for Brave Real Browser - NPM Workspaces Monorepo with anti-detection features, SSE streaming, and LSP compatibility",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -50,7 +50,7 @@
50
50
  "dependencies": {
51
51
  "@modelcontextprotocol/sdk": "latest",
52
52
  "@types/turndown": "latest",
53
- "brave-real-browser": "^2.8.31",
53
+ "brave-real-browser": "^2.8.32",
54
54
  "puppeteer-core": "^24.35.0",
55
55
  "turndown": "latest",
56
56
  "vscode-languageserver": "^9.0.1",