brave-real-browser-mcp-server 2.32.5 â 2.32.7
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 +75 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -107,6 +107,53 @@ npm run dev
|
|
|
107
107
|
|
|
108
108
|
---
|
|
109
109
|
|
|
110
|
+
## đ New in v2.33.x - Advanced Stealth & Bot Detection Bypass
|
|
111
|
+
|
|
112
|
+
### đĄī¸ SannySoft Bot Detection - 100% Pass Rate
|
|
113
|
+
|
|
114
|
+
| Test | Status | Fix Applied |
|
|
115
|
+
|------|--------|-------------|
|
|
116
|
+
| **WebDriver** | â
PASSED | Property deletion + hasOwnProperty override |
|
|
117
|
+
| **WebDriver Advanced** | â
PASSED | 30+ automation keys cleaned |
|
|
118
|
+
| **Chrome** | â
PASSED | window.chrome object present |
|
|
119
|
+
| **Permissions** | â
PASSED | Fake Notification API + permissions.query spoof |
|
|
120
|
+
| **Plugins** | â
PASSED | Real PluginArray with 7 plugins |
|
|
121
|
+
| **Languages** | â
PASSED | Proper language array |
|
|
122
|
+
| **WebGL Vendor/Renderer** | â
PASSED | Real GPU info exposed |
|
|
123
|
+
|
|
124
|
+
### đ Advanced Fingerprinting Protection
|
|
125
|
+
|
|
126
|
+
| Feature | Description |
|
|
127
|
+
|---------|-------------|
|
|
128
|
+
| **Canvas Fingerprinting** | Noise injection in toDataURL and getImageData |
|
|
129
|
+
| **WebGL Fingerprinting** | GPU vendor/renderer spoofing (Intel, NVIDIA, AMD) |
|
|
130
|
+
| **AudioContext Fingerprinting** | Oscillator frequency + analyzer noise |
|
|
131
|
+
| **Notification API Spoof** | Creates fake Notification with permission='default' |
|
|
132
|
+
| **Permissions API Spoof** | Returns 'prompt' for notifications query |
|
|
133
|
+
|
|
134
|
+
### đ uBlock Origin Auto-Sync (GitHub Action)
|
|
135
|
+
|
|
136
|
+
Automatic filter updates every 6 hours:
|
|
137
|
+
- Fetches official uBlock Origin filters
|
|
138
|
+
- Includes EasyList, EasyPrivacy
|
|
139
|
+
- Extracts popup, redirect, scriptlet rules
|
|
140
|
+
- Auto-patches `ublock-custom-filters.txt`
|
|
141
|
+
- Triggers version bump on filter updates
|
|
142
|
+
|
|
143
|
+
**Workflow:** `.github/workflows/ublock-filter-sync.yml`
|
|
144
|
+
|
|
145
|
+
### đ Visual Test Results
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
â
SannySoft Bot Detection - ALL PASSED
|
|
149
|
+
â
AdBlock Tester Score: 100/100
|
|
150
|
+
â
CanYouBlockIt - Clean (no ads visible)
|
|
151
|
+
â
AmIUnique - Not Unique (blends in with real users)
|
|
152
|
+
â
Window.open Wrapper - Properly intercepted
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
---
|
|
156
|
+
|
|
110
157
|
## đ New in v2.28.1 - Advanced Enhancements
|
|
111
158
|
|
|
112
159
|
### đ Advanced Navigation
|
|
@@ -270,15 +317,38 @@ brave-real-launcher
|
|
|
270
317
|
âââ brave-real-browser-mcp-server
|
|
271
318
|
```
|
|
272
319
|
|
|
320
|
+
### Core Features
|
|
321
|
+
|
|
273
322
|
| Feature | Description |
|
|
274
323
|
|---------|-------------|
|
|
275
|
-
| **AdBlocking** | Network-level ad/tracker blocking |
|
|
324
|
+
| **AdBlocking** | Network-level ad/tracker blocking with uBlock Origin filters |
|
|
276
325
|
| **Stealth** | Native function masking (prompt, alert, confirm) |
|
|
277
326
|
| **RedirectBlocking** | Popup, window.open interception, tracking param removal |
|
|
278
|
-
| **ScriptletInjection** | Anti-adblock bypass |
|
|
279
|
-
| **CosmeticFiltering** | Element hiding |
|
|
280
|
-
|
|
281
|
-
|
|
327
|
+
| **ScriptletInjection** | Anti-adblock bypass with uBlock scriptlets |
|
|
328
|
+
| **CosmeticFiltering** | Element hiding with CSS injection |
|
|
329
|
+
|
|
330
|
+
### Anti-Detection (50+ Features)
|
|
331
|
+
|
|
332
|
+
| Category | Features |
|
|
333
|
+
|----------|----------|
|
|
334
|
+
| **Navigator** | WebDriver deletion, hasOwnProperty override, plugins array |
|
|
335
|
+
| **Permissions** | Notification.permission='default', permissions.query='prompt' |
|
|
336
|
+
| **Canvas** | toDataURL noise, getImageData noise injection |
|
|
337
|
+
| **WebGL** | GPU vendor/renderer spoofing (8 GPU configs) |
|
|
338
|
+
| **Audio** | AudioContext oscillator frequency noise |
|
|
339
|
+
| **Dialogs** | Native alert/confirm/prompt wrappers |
|
|
340
|
+
| **Focus** | document.hasFocus() always returns true |
|
|
341
|
+
|
|
342
|
+
### Auto-Updating Filters
|
|
343
|
+
|
|
344
|
+
| Source | Update Frequency |
|
|
345
|
+
|--------|------------------|
|
|
346
|
+
| uBlock Origin Official | Every 6 hours (GitHub Action) |
|
|
347
|
+
| EasyList | Every 6 hours |
|
|
348
|
+
| EasyPrivacy | Every 6 hours |
|
|
349
|
+
| Custom Rules | On deploy |
|
|
350
|
+
|
|
351
|
+
> No configuration needed - blocker activates automatically on browser launch.
|
|
282
352
|
|
|
283
353
|
---
|
|
284
354
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brave-real-browser-mcp-server",
|
|
3
|
-
"version": "2.32.
|
|
3
|
+
"version": "2.32.7",
|
|
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.12.
|
|
53
|
+
"brave-real-browser": "^2.12.7",
|
|
54
54
|
"puppeteer-core": "^24.35.0",
|
|
55
55
|
"turndown": "latest",
|
|
56
56
|
"vscode-languageserver": "^9.0.1",
|