cloakbrowser-mcp
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., "@cloakbrowser-mcpGet the text from https://example.com"
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.
cloakbrowser-mcp
把 CloakBrowser(在原始碼層改過、繞過 bot 偵測的隱形 Chromium)包成 MCP server,讓 Claude Code(或任何 MCP client)直接拿來做網頁檢索。
底層是真正修改過二進位的 Chromium,連 headless 模式都能通過 sannysoft 的 WebDriver 進階偵測,比 JS 注入式的 stealth 方案穩。
工具
工具 | 用途 |
| 開網址回傳渲染後的可見純文字(餵 LLM 分析);可給 |
| 回傳渲染後 HTML 原始碼(結構化解析 / 抽連結) |
| 整頁或單一元素截圖存 PNG |
| 單一 session 內依序執行 click/fill/scroll/wait… 再擷取 |
每個工具都吃共用反偵測參數:
參數 | 預設 | 說明 |
|
| 模擬人類滑鼠曲線 / 鍵盤時序 |
|
| 代理 URL,例如 |
|
| 依代理 IP 自動對齊時區 / 語系 |
|
| 有些站會偵測 headless,硬站設 |
|
| 手動指定 IANA 時區 / BCP 47 語系 |
要繞 Cloudflare / reCAPTCHA / FingerprintJS 時建議組合:住宅 proxy + geoip=true + humanize=true,再不行加 headless=false。
每次呼叫都是「開瀏覽器 → 做事 → 關閉」的無狀態模式;需要跨步驟(登入、填表、翻頁)請用一次 cloak_interact 把動作串起來。
Related MCP server: Local-MCP-server
需求
Python ≥ 3.10(建議 3.12)
macOS arm64/x64、Linux x86_64/arm64、Windows x86_64
首次執行會自動下載隱形 Chromium 二進位(~200MB,快取在
~/.cloakbrowser/)
安裝
git clone https://github.com/Oliver0804/cloakbrowser-mcp.git
cd cloakbrowser-mcp
python3.12 -m venv .venv
.venv/bin/pip install -e .
.venv/bin/python -c "import cloakbrowser as cb; cb.ensure_binary()" # 預先下載 Chromium註冊到 Claude Code
claude mcp add --scope user cloakbrowser "$(pwd)/.venv/bin/cloakbrowser-mcp"確認連線:
claude mcp list | grep cloakbrowser # 應顯示 ✔ Connected註冊後重開一次 Claude Code session,mcp__cloakbrowser__* 四個工具就會出現。
在 Claude Code 內使用
直接用自然語言叫工具即可,例如:
用 cloak_get_text 幫我抓 https://news.ycombinator.com 的標題
把 https://example.com 用 cloak_screenshot 截整頁存到 /tmp/shot.png
這個站有 Cloudflare,請帶 proxy 跟 humanize 再抓cloak_interact action 格式
actions 是動作清單,第一個通常是 goto:
[
{"type": "goto", "url": "https://example.com", "wait_until": "domcontentloaded"},
{"type": "fill", "selector": "#email", "value": "a@b.com"},
{"type": "type", "selector": "#q", "value": "hello", "delay": 40},
{"type": "press", "selector": "#q", "keys": "Enter"},
{"type": "click", "selector": "button#go"},
{"type": "select", "selector": "#country", "value": "TW"},
{"type": "scroll", "dy": 1500},
{"type": "wait_selector", "selector": ".results", "timeout_ms": 15000},
{"type": "wait_ms", "ms": 1500}
]extract:text|html|none(最終回傳形式)selector:extract=text時只取此元素文字screenshot_path:給定則動作跑完後再截一張整頁圖
其他 MCP client
任何支援 stdio 的 MCP client 都能用,把指令指到 entrypoint:
{
"mcpServers": {
"cloakbrowser": {
"command": "/abs/path/cloakbrowser-mcp/.venv/bin/cloakbrowser-mcp"
}
}
}授權
本倉庫包裝程式碼:MIT
CloakBrowser 二進位:免費使用但禁止重新發佈(見上游 BINARY-LICENSE.md)。本倉庫不含二進位,安裝時由
cloakbrowser套件自動下載。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that provides LLMs with stealth browser automation capabilities via CloakBrowser to bypass bot detection services like Cloudflare and reCAPTCHA. It supports full page interaction, content extraction, and human-like behavior through 30 specialized tools.2012Apache 2.0
- FlicenseNot gradedqualityDmaintenanceEnables tool-calling LLMs to search the internet, capture website images, extract webpage text, and more via a local MCP server.14
- AlicenseAqualityFmaintenanceA 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.241MIT
- AlicenseNot gradedqualityBmaintenanceMCP server that wraps Playwright to give AI agents eyes on the web, enabling browser search, navigation, extraction, and interaction with intelligent LLM-based DOM extraction and skill caching.14MIT
Related MCP Connectors
Stealth web browser for agents: search, fetch, click and type through persistent sessions over MCP.
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Firecrawl MCP — wraps the Firecrawl API (firecrawl.dev) for web
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/Oliver0804/cloakbrowser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server