The Browser Agent That Can't Be Detected
Bond automates browsers like a human — secure credential vault, community skills, and MCP integration for any AI assistant.
// Claude Code → Bond MCP tool call
bond.navigate("https://github.com/login")
bond.fill_vault("github")// AES-256-GCM encrypted
bond.skill_pull("login to github")
// Human-like mouse path via Fitts's Law
→ cursor overshoot: 3.2px, correction: 12ms
→ typing speed: 68 wpm, 2 natural errors
→ bot detection score: 0.02 ✓
✓Login successful
captcha skipped — 2captcha solved in 1.4s
Built to evade detection. Designed for developers.
Bond combines human-like browser behavior with a local credential vault and community-powered skill library — all accessible via MCP from any AI assistant.
Everything you need for serious automation
Bond ships with the full stack of anti-detection tech, credential management, and developer tooling out of the box.
MCP Server
Runs on port 9000. Works with Claude Code, OpenCode, Cursor, and any MCP-compatible AI assistant via ~/.mcp.json.
2captcha Integration
Auto-detect and solve CAPTCHAs including Cloudflare Turnstile, Google reCAPTCHA, and hCaptcha. Inject solutions transparently.
Task Recovery
Crashed or interrupted tasks resume automatically from the last checkpoint stored in local SQLite state. Zero lost work.
Multi-Profile
Separate browser profiles with independent cookies, localStorage, fingerprints, and encrypted vaults per identity.
Ghost Cursor
Powered by ghost-cursor with Bezier curve paths, jitter, and realistic acceleration. Undetectable on headless detection tests.
rebrowser-puppeteer
Built on rebrowser-puppeteer to patch stealth leaks. No navigator.webdriver, no CDP detection, no automation flags.
Up and running in 60 seconds
Bond ships as a single binary. Install it, start the services, and connect to your AI assistant via MCP.
Install & Start
# Download latest binary
curl -L https://git.29tech.cn/xielun_ai/bond/-/releases/permalink/latest/downloads/bond-daemon-linux-x64 \
-o bond-daemon
chmod +x bond-daemon && mv bond-daemon ~/.bond/bin/
# Install as system services
bond-daemon install
# Starts: bond-browser.service (:3457) + bond.service (:9000)
# Add to Claude Code MCP
claude mcp add bond http://127.0.0.1:9000/mcpMCP Config (OpenCode, Cursor, etc.)
// ~/.mcp.json
{
"mcpServers": {
"bond": {
"url": "http://127.0.0.1:9000/mcp"
}
}
}Two services run in the background
bond-browser.service— Node.js Playwright worker on :3457bond.service— Rust MCP server on :9000