CloakBrowser MCP Server
A stealth browser automation MCP server that wraps CloakBrowser's patched Chromium to bypass bot detection, providing 22 tools for web navigation, interaction, and session management.
README
CloakBrowser MCP Server
Stealth browser automation via Model Context Protocol, powered by CloakBrowser.
A drop-in MCP server that wraps CloakBrowser's stealth Chromium with 57 source-level C++ fingerprint patches — not JS injection. Passes all 30/30 bot detection tests (reCAPTCHA v3 score: 0.9, Cloudflare Turnstile: PASS, FingerprintJS: PASS).
All tools use the cloak_ prefix to avoid conflicts with Hermes Agent's built-in browser_* tools.
Features
- 22 cloak tools — navigate, click, type, screenshot, console, evaluate JS, form filling, drag & drop, and more
- Stealth by default —
navigator.webdriver = false, real Chrome TLS fingerprint, no CDP detection - Human-like behavior —
humanize=Trueenables Bézier mouse curves, per-character keyboard timing - Proxy support — HTTP & SOCKS5 with GeoIP auto-detection
- Session persistence — save/load cookies and localStorage
- Compatible with any MCP client — Hermes Agent, Claude Desktop, Cursor, etc.
- No naming conflicts —
cloak_*prefix won't collide with Hermes built-inbrowser_*tools
Quick Start
Install
pip install mcp-cloakbrowser
Run
# As a stdio MCP server
mcp-cloakbrowser
# Or directly
python -m cloakbrowser_mcp.server
Use with Hermes Agent
Add to ~/.hermes/config.yaml:
mcp_servers:
cloakbrowser:
command: "python"
args: ["-m", "cloakbrowser_mcp.server"]
timeout: 120
Restart Hermes Agent. Tools will be registered as mcp_cloakbrowser_cloak_*.
Use with Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"cloakbrowser": {
"command": "mcp-cloakbrowser"
}
}
}
Available Tools
All tools use the cloak_ prefix (registered as mcp_cloakbrowser_cloak_* in Hermes):
| Tool | Description |
|---|---|
cloak_launch |
Launch a stealth CloakBrowser instance |
cloak_close |
Close the browser and clean up |
cloak_navigate |
Navigate to a URL, return compact snapshot |
cloak_snapshot |
Get accessibility tree with ref IDs |
cloak_click |
Click element by ref (e.g. @e5) |
cloak_type |
Type text into input field by ref |
cloak_press |
Press keyboard key (Enter, Tab, Escape...) |
cloak_scroll |
Scroll page up/down |
cloak_back |
Navigate back in history |
cloak_forward |
Navigate forward in history |
cloak_console |
Get console logs or evaluate JS |
cloak_get_images |
List all images with URLs and alt text |
cloak_screenshot |
Take PNG screenshot |
cloak_wait_for |
Wait for element or text to appear |
cloak_evaluate |
Evaluate JavaScript expression |
cloak_get_content |
Get text/HTML of page or element |
cloak_extract_links |
Extract all links as JSON |
cloak_fill_form |
Fill multiple form fields at once |
cloak_hover |
Hover over element by ref |
cloak_select_option |
Select options in <select> elements |
cloak_drag |
Drag element to another element |
cloak_save_storage_state |
Save cookies/localStorage to file |
cloak_load_storage_state |
Load cookies/localStorage from file |
cloak_info |
Get current page URL, title, viewport |
Tool Usage Examples
Navigate and Interact
# Launch browser
await call_tool("cloak_launch", {"headless": True, "humanize": True})
# Navigate to a page
await call_tool("cloak_navigate", {"url": "https://example.com"})
# Get snapshot to see interactive elements
snapshot = await call_tool("cloak_snapshot", {})
# Shows: [@e1] <a>Link text, [@e2] <input>[type: text]...
# Click a link
await call_tool("cloak_click", {"ref": "@e1"})
# Type into search box
await call_tool("cloak_type", {"ref": "@e2", "text": "hello world", "submit": True})
# Take screenshot
await call_tool("cloak_screenshot", {})
Fill a Login Form
await call_tool("cloak_fill_form", {
"fields": [
{"ref": "@e1", "value": "username"},
{"ref": "@e2", "value": "password123"},
],
"submit_ref": "@e3",
})
Advanced: Custom Fingerprint & Proxy
await call_tool("cloak_launch", {
"headless": True,
"humanize": True,
"proxy": "socks5://user:pass@proxy:1080",
"fingerprint_seed": "my-unique-seed-123",
"geoip": True,
"locale": "zh-CN",
})
Save/Restore Session
# Save session after login
await call_tool("cloak_save_storage_state", {"path": "session.json"})
# Later: restore session
await call_tool("cloak_load_storage_state", {"path": "session.json"})
Why cloak_* Prefix?
Hermes Agent has built-in browser_* tools (browser_navigate, browser_click, etc.) that use its own Playwright instance. Using the same names would cause conflicts. The cloak_ prefix makes it clear these tools use CloakBrowser's stealth Chromium, and allows you to use both in the same session:
browser_navigate→ Hermes built-in Playwright (fast, no stealth)cloak_navigate→ CloakBrowser stealth Chromium (passes bot detection)
Architecture
MCP Client (Hermes/Claude/etc.)
│ stdio (JSON-RPC)
▼
mcp-cloakbrowser server
│
▼
CloakBrowser (Playwright-compatible API)
│
▼
Stealth Chromium (57 C++ patches)
The server maintains a single browser instance (singleton pattern). All tools operate on the current page. The browser is auto-launched on first tool call if not explicitly launched.
Development
git clone https://github.com/MiwooMiwoo/cloakbrowser-mcp.git
cd cloakbrowser-mcp
pip install -e ".[dev]"
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。