CloakBrowser MCP

CloakBrowser MCP

CloakBrowser MCP is a Python MCP server that lets agents control a CloakBrowser-backed browser from Linux servers, CI jobs, and other environments where a normal desktop browser is not available.

Category
访问服务器

README

CloakBrowser MCP

CloakBrowser MCP is a Python MCP server that lets agents control a CloakBrowser-backed browser from Linux servers, CI jobs, and other environments where a normal desktop browser is not available.

It is designed for three runtime modes:

  • headless Linux browsing with no $DISPLAY
  • virtual-display browsing through Xvfb when headed browser behavior is needed
  • CDP connection to an existing CloakBrowser or Chromium-compatible endpoint

The server exposes browser automation tools over MCP stdio, so clients such as Claude Code can start a session, navigate, inspect pages, interact with forms, manage cookies/storage, and work with multiple tabs.

Upstream

This project is an MCP wrapper and agent-facing extension built on top of CloakHQ/CloakBrowser. CloakBrowser provides the underlying browser launch and anti-detection automation layer; this repository adds the MCP server, tool schema, session lifecycle, Linux headless/virtual-display deployment flow, tests, and agent-oriented documentation around it.

Features

  • 28 MCP tools for browser sessions, page interaction, cookies, storage state, and multi-page workflows.
  • Works in headless Linux environments by default.
  • Optional Xvfb support for virtual display sessions.
  • Optional CDP backend for connecting to an existing browser service.
  • CloakBrowser launch options for user agent, viewport, proxy, locale, timezone, geolocation, humanization, extensions, headers, permissions, and persistent profile/state.
  • iframe-aware select support through browser_select_option(..., frame_selector="iframe#...").
  • uv-managed local development and deployment.

Requirements

  • Python 3.11 or newer
  • uv
  • Linux, macOS, or another platform supported by the Python dependencies
  • For virtual display mode on Linux: Xvfb

Install uv if needed:

curl -LsSf https://astral.sh/uv/install.sh | sh

For virtual display mode on Debian/Ubuntu:

sudo apt-get update
sudo apt-get install -y xvfb

If the runtime does not already have browser binaries available, install the Playwright Chromium browser used by the underlying stack:

uv run python -m playwright install chromium

Installation

Clone the repository and create an isolated uv environment:

git clone https://github.com/SJF-ECNU/CloakBrowserMCP.git
cd CloakBrowserMCP
uv sync --extra dev --no-editable

The project depends on:

After changing source code, rebuild the installed package used by MCP clients:

uv sync --extra dev --no-editable --reinstall-package cloakbrowser-mcp

Run the MCP Server

Start the stdio MCP server:

uv run --no-editable cloakbrowser-mcp

The process communicates over stdio. It is normally launched by an MCP client rather than run manually in a terminal.

Claude Code Setup

From the repository root, register the server:

claude mcp add --scope user cloakbrowser -- \
  uv --project "$PWD" run --no-editable cloakbrowser-mcp

Then restart Claude Code or reconnect MCP servers. Run /mcp in Claude Code and confirm that cloakbrowser is connected.

If you edit the server code, reinstall the package and reconnect Claude Code:

uv sync --extra dev --no-editable --reinstall-package cloakbrowser-mcp

Claude Code may cache MCP tool schemas for the lifetime of a connection, so a restart/reconnect is recommended after tool signature changes.

Generic MCP Client Config

For clients that read JSON MCP configuration, use an entry like this:

{
  "mcpServers": {
    "cloakbrowser": {
      "command": "uv",
      "args": [
        "--project",
        "/absolute/path/to/CloakBrowserMCP",
        "run",
        "--no-editable",
        "cloakbrowser-mcp"
      ]
    }
  }
}

Replace /absolute/path/to/CloakBrowserMCP with the local checkout path.

Browser Modes

Headless Mode

This is the default and is the best choice for Linux servers without a display:

{
  "display_mode": "headless"
}

Virtual Display Mode

Use this when a target site requires headed browser behavior. If $DISPLAY is already set, the server uses it. Otherwise it starts Xvfb.

{
  "display_mode": "virtual"
}

CDP Mode

Use CDP mode to connect to an existing browser or CloakBrowser service:

{
  "backend": "cdp",
  "cdp_url": "http://127.0.0.1:9222",
  "fingerprint": "agent-session-1"
}

You can also set a default CDP URL:

export CLOAK_MCP_DEFAULT_CDP_URL=http://127.0.0.1:9222

Tool Overview

Session tools:

  • browser_start
  • browser_close

Page basics:

  • browser_navigate
  • browser_click
  • browser_type
  • browser_evaluate
  • browser_snapshot
  • browser_screenshot

Page operations:

  • browser_wait_for_selector
  • browser_press
  • browser_hover
  • browser_select_option
  • browser_get_text
  • browser_get_attribute
  • browser_get_links
  • browser_scroll
  • browser_reload
  • browser_go_back
  • browser_go_forward

Context and page management:

  • browser_get_cookies
  • browser_set_cookies
  • browser_clear_cookies
  • browser_get_storage_state
  • browser_save_storage_state
  • browser_new_page
  • browser_list_pages
  • browser_switch_page
  • browser_close_page

Common Workflows

Start and Navigate

{
  "tool": "browser_start",
  "arguments": {
    "display_mode": "headless",
    "viewport": {"width": 1440, "height": 900},
    "locale": "en-US",
    "timezone": "UTC"
  }
}

Then navigate:

{
  "tool": "browser_navigate",
  "arguments": {
    "session_id": "<session_id>",
    "url": "https://example.com",
    "wait_until": "domcontentloaded"
  }
}

Inspect a Page

Use browser_snapshot for URL, title, and visible text. Use browser_get_text for all visible text or a selector-specific text extraction:

{
  "tool": "browser_get_text",
  "arguments": {
    "session_id": "<session_id>",
    "selector": "main"
  }
}

Search or Fill a Form

{
  "tool": "browser_type",
  "arguments": {
    "session_id": "<session_id>",
    "selector": "input[name=q]",
    "text": "CloakBrowser MCP"
  }
}
{
  "tool": "browser_press",
  "arguments": {
    "session_id": "<session_id>",
    "selector": "input[name=q]",
    "key": "Enter"
  }
}

Select an Option inside an iframe

For a normal page-level <select>, omit frame_selector. For a select inside an iframe, pass the iframe selector separately:

{
  "tool": "browser_select_option",
  "arguments": {
    "session_id": "<session_id>",
    "selector": "#size",
    "value": "medium",
    "frame_selector": "iframe#preview"
  }
}

Reuse Login State

Save storage state:

{
  "tool": "browser_save_storage_state",
  "arguments": {
    "session_id": "<session_id>",
    "path": "/tmp/cloak-state.json"
  }
}

Start a new session with that state:

{
  "tool": "browser_start",
  "arguments": {
    "storage_state": "/tmp/cloak-state.json"
  }
}

For durable browser profiles, use profile_dir instead. profile_dir and storage_state are mutually exclusive.

browser_start Options

Option Type Notes
backend string direct or cdp. Defaults to direct.
display_mode string headless, virtual, or cdp. Defaults to headless.
headless bool/null Overrides headless behavior for direct mode.
proxy string/null Proxy URL forwarded to CloakBrowser.
locale string/null Browser locale, for example en-US.
timezone string/null Browser timezone, for example UTC.
humanize bool Enables CloakBrowser humanized behavior.
profile_dir string/null Persistent profile directory.
cdp_url string/null Required for CDP mode unless env var is set.
fingerprint string/null Added to the CDP URL as a fingerprint query parameter.
user_agent string/null Custom user agent.
viewport object/null Example: {"width": 1440, "height": 900}.
no_viewport bool Sets Playwright viewport to null.
color_scheme string/null light, dark, or no-preference.
geoip bool Forwards CloakBrowser geoip option.
stealth_args bool Defaults to true.
args array/null Extra browser launch args.
extension_paths array/null Browser extension paths.
human_preset string CloakBrowser humanization preset.
human_config object/null CloakBrowser humanization config.
storage_state string/object/null Storage state path or object.
extra_http_headers object/null Extra HTTP headers.
permissions array/null Browser context permissions.

Environment variables:

  • CLOAK_MCP_DEFAULT_DISPLAY_MODE: default display mode when not provided
  • CLOAK_MCP_DEFAULT_CDP_URL: default CDP endpoint
  • CLOAK_MCP_SCREENSHOT_DIR: screenshot output directory

Development

Install development dependencies:

uv sync --extra dev

Run tests against the source tree:

PYTHONPATH=src uv run pytest -q

Run tests against the installed package:

uv sync --extra dev --no-editable --reinstall-package cloakbrowser-mcp
uv run --no-editable pytest -q

Real browser smoke tests are opt-in:

CLOAK_MCP_RUN_SMOKE=1 uv run --no-editable pytest tests/test_smoke.py -q

Virtual display smoke:

CLOAK_MCP_RUN_VIRTUAL_SMOKE=1 uv run --no-editable pytest tests/test_smoke.py -q

CDP smoke:

CLOAK_MCP_SMOKE_CDP_URL=http://127.0.0.1:9222 \
  uv run --no-editable pytest tests/test_smoke.py -q

Security Notes

Browser automation can access web pages, cookies, local files referenced by the browser profile, and authenticated sessions. Run the MCP server in an environment appropriate for the trust level of the agent and target websites.

Avoid sharing persistent profile_dir or storage_state files with untrusted agents.

License

MIT. See LICENSE.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选