BRYG
Your AI assistant's hands on the browser
BRYG is an MCP server that lets AI assistants drive real Chromium-based browsers โ navigate, click, type, read pages, run OCR, and record network traffic. Like a human operator, on your machine.
๐ Website ยท ๐ Docs ยท ๐ Security ยท ๐ Privacy
$3 per device/month ยท 14-day free trial ยท macOS (Apple Silicon) & Windows (x64) ยท Works with Google Chrome
What is BRYG?
BRYG implements the Model Context Protocol (MCP) as a plain stdio server, so any compatible client โ Claude Code, Claude Desktop, Hermes, Cursor, and others โ can control a Chromium browser on your machine. It gives your AI assistant 43 tools covering perception, action, and observation, designed from daily QA work rather than demos.
Note: This repository hosts BRYG's public documentation and issue tracker. The product itself is a single self-contained binary, distributed via the installer below and verified by SHA-256 checksum on download.
Get started
BRYG is a licensed product โ you need a key to activate it. It takes about a minute:
- Get a license key โ start your 14-day free trial at bryg.pages.dev and pick how many devices you need ($3 per device/month). Your license key is emailed to you (billing, cancellation, and refunds are handled in the customer portal linked in that email).
- Install โ run the one-line installer for your OS (below).
- Activate โ the guided setup asks for your key during install, or run
bryg activate <key>anytime.
Licensing more than one device
Each device gets its own license key, and each key activates one machine. Pick the number of devices at checkout โ 3 devices is $9/month. Your own key is issued immediately; for every additional device you enter an email address, and the invitation link sent there issues that device its own key. All of your keys are listed together in the customer portal, and you can add or remove devices at any time with prorated billing.
Install
macOS
curl -fsSL https://bryg.pages.dev/install.sh | sh
Windows (PowerShell)
irm https://bryg.pages.dev/install.ps1 | iex
The installer downloads the right binary for your OS/architecture to ~/.bryg/bin/ (%USERPROFILE%\.bryg\bin\ on Windows), verifies its SHA-256 checksum, then runs a guided setup that registers BRYG with your MCP client(s), optionally installs OCR support, and activates your license key.
npm / npx โ if you'd rather configure your MCP client directly (needs Node.js 18+):
{
"mcpServers": {
"bryg": { "command": "npx", "args": ["-y", "bryg-mcp"] }
}
}
bryg-mcp is a launcher: on first run it downloads the BRYG engine for your platform into ~/.bryg/bin, verifies its checksum, and starts it โ same engine, same license, same ~/.bryg as the installers above. Activate with npx bryg-mcp activate <key>; every other command works the same way.
Why BRYG
- Sees pages like structure โ accessibility-tree snapshots with stable element refs (
[ref=N]); compact and reliable for AI to act on, with coordinate fallback. - OCR & QR built in โ reads text from canvas, images, and games (multi-strategy OCR, any tesseract language) and decodes QR codes on the page.
- Network capture โ record everything, keyword-filtered, or failures-only. Sensitive headers and password/token-like fields are masked by default.
- Credentials stay local โ secrets never enter AI conversations.
- Headful by design โ a dedicated browser instance you can watch and take over at any time.
- Zero telemetry โ runs entirely on your machine; the only network calls are license validation and an anonymous update check.
Tools (43)
Perception โ browser_snapshot ยท browser_read ยท browser_screenshot ยท browser_ocr ยท browser_qr
Action โ navigate ยท click ยท type ยท fill ยท scroll ยท press keys ยท drag ยท upload ยท select, and more
Observation โ network_start ยท network_stop ยท network_status
See the full tool reference.
CLI
| Command | Description |
|---|---|
bryg | Start the MCP server (stdio) โ this is what your MCP client runs |
bryg setup [--yes] [--no-ocr] [--no-path] | Guided setup (re-runnable) |
bryg activate <key> | Activate your license on this machine |
bryg deactivate | Release this machine's license seat |
bryg update [--check] | Update BRYG (verified by checksum) |
bryg browser launch [url] | stop | Manage the dedicated automation browser |
bryg uninstall [--yes] | Deactivate seat, unregister, and remove ~/.bryg |
Registering with an MCP client
bryg setup registers BRYG with Claude Code and Claude Desktop for you. For any other client, point it at the binary as a stdio server. Hermes, for example, takes a few lines in ~/.hermes/config.yaml followed by /reload-mcp:
mcp_servers:
bryg:
command: "${userHome}/.bryg/bin/bryg"
args: []
enabled: true
Documentation
Full documentation โ installation, CLI, configuration, all 43 tools, licensing FAQ, and changelog โ lives at bryg.pages.dev/docs.
Support
- ๐ Found a bug or have a feature request? Open an issue.
- ๐ฌ Questions? See the FAQ or reach out via the site.
License
BRYG is commercial software provided under its End User License Agreement. This repository's documentation content is ยฉ BRYG. The BRYG binary is not open source.