Controlium
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., "@ControliumGo to example.com and take a screenshot"
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.
Controlium
Let Claude drive your real Chrome. Controlium is a Chrome extension + local MCP bridge that gives Claude β in Claude Code and Claude Desktop β control of your browser over the Chrome DevTools Protocol: navigate, click, type, scroll, screenshot, read pages, run JS. It does what the official "Claude in Chrome" extension does, with two differences:
π It brings the working tab to the front. Every action first makes the target tab the active, visible tab and focuses its window. Claude's tab is never hidden in the background. (The official extension deliberately drives background tabs β see RESEARCH.md.)
β¨ It shows a synthetic cursor. A glowing pointer animates to each click with a ripple, so you can watch Claude work β and it shows up in screenshots too.
It runs in your normal Chrome profile (your logins, your tabs), not a throwaway instance.
Claude Code / Claude Desktop / Claude WORK β¦ (any number of MCP clients)
β stdio
βΌ
mcp-server/server.js (thin client; auto-starts the daemon)
β WebSocket β 127.0.0.1:8765
βΌ
mcp-server/bridge.js ββ ONE shared daemon; owns the port + the extension link
β WebSocket
βΌ
extension service worker
β chrome.debugger (CDP) + chrome.tabs / chrome.windows
βΌ
your Chrome tab βββΆ brought to the FRONT, with a visible cursorEvery Claude app connects to a single shared bridge daemon on port 8765, so any number of them coexist without fighting over the port. The daemon starts automatically the first time any Claude launches the MCP server.
Quick start
git clone https://github.com/am-will/controlium.git
cd controlium
./install.shThe installer:
installs the MCP server's dependencies,
registers the MCP server with Claude Code (
claude mcp add controlium),builds the Claude Desktop bundle (
build/controlium.mcpb),copies the extension's path to your clipboard and prints the one manual step.
Then load the extension (the one thing Chrome won't let a script do):
open
chrome://extensionsturn on Developer mode (top-right)
click Load unpacked and choose the
extension/folder (already on your clipboard)
It appears as Controlium β the toolbar dot turns green once it's connected. Now ask Claude to control your browser.
Installer options: ./install.sh --code-only, --desktop-only, --no-desktop,
--open-desktop (macOS: also pops the Claude Desktop install dialog).
Related MCP server: Browserbeam MCP Server
Manual setup
Chrome blocks loading unpacked extensions from the command line in branded builds, so load
it once through the UI: chrome://extensions β Developer mode β Load unpacked β
select the extension/ folder. It persists across restarts. The popup has a status dot
and toggles for bring-to-front and the synthetic cursor.
claude mcp add controlium --scope user -- node "$(pwd)/mcp-server/server.js"Claude Code launches the server (bridge on port 8765); the extension auto-connects.
Verify with claude mcp list.
Recent Claude Desktop builds manage claude_desktop_config.json themselves and overwrite
hand-added mcpServers, so install it as a Desktop Extension (.mcpb) instead:
./scripts/build-mcpb.sh # produces build/controlium.mcpb
open -a Claude build/controlium.mcpb # opens the install dialog (macOS)Or: Claude Desktop β Settings β Extensions β Advanced settings β Install Extensionβ¦
β pick build/controlium.mcpb. (Use the Extensions section, not Connectors β
Connectors is only for remote URL-based servers.)
Multiple Claude Desktop profiles (e.g. a separate "WORK" install) each install the same bundle. Everything β Claude Code and every Desktop profile β shares the one bridge daemon on 8765, so there are no per-app ports to manage. Drive from one at a time.
Tools Claude can call
Tool | Description |
| List open tabs (id, title, url, active, window). |
| Bring a tab to the front (active + window focused). |
| Open / close a tab. |
| Go to a URL (or |
| PNG of the viewport (CSS-pixel space; matches click coords). |
| Accessibility-style outline with |
| Visible page text. |
| Find elements by label; returns refs + coordinates. |
| Click a coordinate or a ref (with the visible cursor). |
| Move the synthetic cursor / trigger hover. |
| Type into the page (optionally click-to-focus, then submit). |
| Keys and combos ( |
| Scroll by direction/amount or dx/dy. |
| Run JS in the page and return the result. |
| Buffered console / network activity. |
| Resize the tab's Chrome window. |
Every tab-targeting tool honors the bring-to-front setting; pass focus: false on a
call to skip it just for that call.
Configuration
Bridge port β everything shares one daemon on
127.0.0.1:8765. The extension's Bridge ports field defaults to8765, 8766, 8767(extra entries are just harmlessly retried);8765is all you need. Override with theCONTROLIUM_PORTenv var if 8765 is taken.Bring to front and Synthetic cursor β toggles in the popup/options, both on by default.
Development
Path | What it is |
| The MV3 Chrome extension (service worker, cursor overlay, popup, options). |
| Node MCP server + localhost WebSocket bridge. |
| Source + builder for the Claude Desktop |
|
|
| How the official extension works (reverse-engineered). |
npm install # dev deps (ws) for the tests
npm test # protocol/bridge test β no browser needed
# Full browser test needs a Chromium that honors --load-extension:
npx @puppeteer/browsers install chrome@stable
CHROME_BIN="/path/to/Chrome for Testing" npm run test:liveNotes & limits
Uses
chrome.debugger, so Chrome shows a "β¦started debugging this browser" banner while active β the price of CDP access, same as the official extension.Only one CDP client can attach to a given tab; if the official Claude extension is attached to the same tab, use a different tab (or disable it there).
Drive from one host at a time. Both bridges can be connected, but issuing commands from Claude Code and Claude Desktop simultaneously will fight over the same tabs.
After a bridge (re)starts, a sleeping service worker can take up to ~30s to reconnect; any browser activity wakes it sooner.
License
This server cannot be installed
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/am-will/controlium'
If you have feedback or need assistance with the MCP directory API, please join our Discord server