Stealth-Browser-MCP-Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Stealth-Browser-MCP-ServerNavigate to https://example.com and take a full-page screenshot"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Electron Stealth
Standalone desktop application — real Chrome fingerprint browser + MCP automation server.
Core value: Not a lightweight Playwright/Puppeteer wrapper. Real Electron Chromium browser with navigator.webdriver = false, real window.chrome, 5 plugins, fingerprint identical to normal Chrome.
Quick Start
1. Launch the app
# From source:
npm start
# Or double-click the built executable:
# dist/ElectronStealth-1.0.0.exe (Windows portable, no install needed)Browser window opens, showing the status page
TCP MCP server starts on
127.0.0.1:19999Window title shows connection status
2. Use with Claude Code (recommended)
Configure ~/.claude.json:
"mcpServers": {
"electron-stealth": {
"command": "node",
"args": ["src/bridge.js"],
"cwd": "<path-to-electron-stealth>"
}
}Restart Claude Code. Then use 32 MCP tools directly:
Open https://example.com
Screenshot
Get page HTML
Click [data-testid="submit-btn"]
Type test@example.com in input[name="email"]3. Direct TCP access (without Claude Code)
# Run the example extraction script:
node scripts/extract_product.js
# Or write your own client connecting to 127.0.0.1:19999Related MCP server: MCP Camoufox
Architecture
┌─────────────────┐ stdio ┌──────────────┐ TCP :19999 ┌────────────────────┐
│ Claude Code │ ←───────────→ │ bridge.js │ ←───────────────→ │ Electron Stealth │
│ (MCP client) │ │ (Node.js) │ │ (Chromium + MCP) │
└─────────────────┘ └──────────────┘ └────────────────────┘
│
├─ BrowserWindow (visible)
├─ CDP debugger (stealth injection)
├─ TCP MCP Server
└─ BrowserController (32 tools)Why not stdio direct?
On Windows, Electron GUI apps cannot reliably communicate with the parent process via stdio (ELECTRON_NO_ATTACH_CONSOLE disconnects pipes). bridge.js solves this: it runs as a pure Node.js process connected to Claude Code's stdio, then forwards to the Electron app via TCP.
All 32 Tools
Category | Tool | Description |
Navigation |
| Open URL |
| Navigate back | |
| Navigate forward | |
| Reload page | |
Interaction |
| Click by CSS selector |
| Click by coordinates | |
| Type text (optional selector focus) | |
| Click at coords then type | |
| Key press (supports Ctrl/Alt/Shift/Meta) | |
| Scroll page | |
| Move mouse | |
Reading |
| Screenshot (viewport or full page) → base64 PNG |
| Element screenshot | |
| Execute JS, return result | |
| Get complete HTML | |
| Get visible text | |
| Get current URL | |
| Structured snapshot of interactive elements | |
| Detailed single-element info | |
Forms |
| Select dropdown option (value or label) |
| Upload files | |
| Handle alert/confirm/prompt | |
Wait |
| Wait for time or selector appearance |
| Wait for network idle | |
Capture |
| Start capturing requests/responses |
| Stop and return captured data | |
| Get response body for a request | |
Record |
| Start recording actions (key-value selectors) |
| Stop recording, return Flow JSON | |
| Check recording status | |
Flow |
| Execute recorded/hand-written Flow, supports |
Stealth Detection
Check | Status |
|
|
| Real object |
| 5 |
|
|
| Configured |
Chrome PDF Plugin | Present |
Permissions.query('notifications') |
|
Flow Recording
# 1. Start recording
record_start
# 2. Perform actions (manual browser or MCP)
click [data-testid="login-btn"]
type user@test.com in input[name="email"]
type password123 in input[type="password"]
# 3. Stop recording, get Flow JSON
record_stop name="Login Flow"
# 4. Replay anytime
run_flow flow={...}Recording uses key-value selector priority: data-testid > id > name > aria-label > placeholder > title > text > class > role > type. Coordinate-independent, stable across window sizes.
Network Capture
network_capture_start
navigate https://target-site.com
wait_for_network timeout=10000 idleTime=500
data = network_capture_stop()
# data.summary.xhrApiCalls → API call list
# data.summary.byDomain → Domain distributionBuild
npm install
npm run build:portable
# Output: dist/ElectronStealth-1.0.0.exe (~73MB, single file, portable)On macOS/Linux, adjust the build.win.target in package.json to your platform.
Troubleshooting
Issue | Solution |
Page shows garbled text/CSS | Confirm latest version (base64-encoded fix) |
Port in use | Close all Electron Stealth windows, or kill the process |
MCP tools not visible | Restart Claude Code to load MCP config |
Need Playwright Chromium? | No! Electron Stealth has its own Chromium |
Blocked by anti-bot? | Uses real Chrome fingerprint, usually not blocked |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/d18626250363/Stealth-Browser-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server