antibrowser-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., "@antibrowser-mcpGo to example.com and read the main content."
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.
Antibrowser MCP
A stdio MCP server built on cloakbrowser (stealth Chromium) that lets LLM agents open web pages and interact with them via a browser-use-style accessibility tree with numeric indices — keeping token usage low.
Features
Persistent user profile at
$HOME/.antibrowser/data-dir(cookies, localStorage, cache survive restarts).Accessibility-tree snapshot: LLM receives an indexed text like
[1] button "Submit"and callsclick(1).Default headless; flip to headed at runtime via
set_headed(true)for debugging — profile state survives.12 tools:
navigate,snapshot,click,fill,press,scroll,get_text,back,forward,set_headed,set_humanize,close.
Related MCP server: Playwright MCP
Installation
git clone <this-repo>
cd anti-browser-mcp
uv synccloakbrowser downloads its patched Chromium on first launch; if that fails, run:
uv run python -c "import cloakbrowser; cloakbrowser.ensure_binary()"Configuration
Env var | Default | Meaning |
|
| Browser profile directory |
|
|
|
|
| Navigation timeout |
| unset | cloakbrowser license key (if required by your plan) |
| unset | Proxy URL |
|
|
|
Wiring into Claude Code
claude mcp add antibrowser -- uv --directory /path/to/anti-browser-mcp run anti-browser-mcpWiring into Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"antibrowser": {
"command": "uv",
"args": ["--directory", "/path/to/anti-browser-mcp", "run", "anti-browser-mcp"]
}
}
}Usage example (in Claude)
Open example.com and tell me the main heading.
Claude will call navigate, then snapshot, then get_text(1) (or whichever index the heading got) and reply.
Manual login CLI
Before letting the LLM drive the browser, you usually need to log in to sites once. The antibrowser open command launches cloakbrowser in headed mode against the same profile the MCP server uses.
uv run antibrowser open https://github.com https://mail.google.comA browser window opens. Log in to each site. When done, return to the terminal and press Enter — the browser closes and cookies/localStorage are persisted to your profile at ~/.antibrowser/data-dir (or $ANTIBROWSER_DATA_DIR).
Pass --humanize to enable cloakbrowser's human-like input layer (slower, randomized mouse/keyboard) — useful for sites with strict bot detection:
uv run antibrowser open --humanize https://github.comNow when the LLM (via the MCP server) calls navigate https://github.com, the session is already authenticated.
Profile is locked
If you see:
Error: profile at ... is locked. Is the antibrowser MCP server or another 'antibrowser open' running? Close it first.it means another process is using the profile. Chromium only allows one process per profile directory. Stop the MCP server (or close the other antibrowser open session) and retry.
Installed script
After uv sync, the entry antibrowser is installed into the venv. On Windows call it directly:
D:\path\to\anti-browser-mcp\.venv\Scripts\antibrowser.exe open https://github.comDevelopment
uv run pytest -q # all tests
uv run pytest tests/test_config.py -v # unit only
uv run pytest -k "not persistence" -v # skip slow persistence testsAll unit and integration tests are expected to pass locally.
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
- 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/reacerland/antibrowser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server