bronom
OfficialClick 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., "@bronomCan you open Glama.ai in a new tab and screenshot it?"
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.
Bronom
Bronom is a visible, multi-tab Electron browser that exposes its live tabs to AI clients through MCP. It is deliberately not headless and is not tied to the lifetime of an AI session.
What it keeps
Cookies, local storage, IndexedDB, service workers, cache, and login sessions use Electron's persistent
persist:bronompartition.Open tabs and the active tab are restored from
tabs.jsonin Electron's user-data directory.Window position, size, monitor, maximized state, and fullscreen state are restored. If that monitor is disconnected, the window is centered on the current primary display.
Closing the window hides it. The Electron process and MCP endpoint keep running; use the tray icon or application menu to reopen or quit it.
A second launch focuses the existing instance instead of starting a competing browser profile.
Related MCP server: Browser Agent MCP Server
Run
Requirements: Node.js 22+ and a graphical Linux, macOS, or Windows session.
npm install
npm run devFor the built application:
npm run build
npm startTo ask an already running development instance to flush its profile and quit cleanly:
node_modules/.bin/electron . --quitThe MCP endpoint is available while the app is running:
http://127.0.0.1:47812/mcpHealth check:
curl http://127.0.0.1:47812/healthzConnect an MCP client
Use a Streamable HTTP MCP configuration and start Bronom before the client connects. A generic JSON configuration looks like:
{
"mcpServers": {
"bronom": {
"url": "http://127.0.0.1:47812/mcp"
}
}
}The exact configuration file or UI depends on the MCP client. Disconnecting or closing that client does not close Bronom.
Optional environment variables:
BRONOM_MCP_PORT: listen port, default47812.BRONOM_MCP_HOST: listen host, default and recommended127.0.0.1.BRONOM_MCP_TOKEN: when set, every MCP and health request must sendAuthorization: Bearer <token>.
MCP tools
browser_status,browser_show,browser_tabsbrowser_new_tab,browser_select_tab,browser_close_tabbrowser_navigate,browser_history,browser_waitbrowser_snapshot,browser_click,browser_type,browser_pressbrowser_screenshot,browser_evaluate
The preferred interaction loop is browser_snapshot → semantic element ref (e1, e2, ...) → browser_click or browser_type. Take a fresh snapshot after navigation or large DOM changes.
Security model
The MCP server binds to loopback by default and rejects non-local browser origins.
An optional bearer token can protect the endpoint.
Website tabs have Node.js disabled, context isolation enabled, Chromium sandboxing enabled, and web security enabled.
New browser windows become managed tabs.
Site permission requests require an explicit user confirmation dialog.
browser_evaluateis intentionally powerful: only connect trusted AI clients to this browser profile.
Validate
npm test
npm run typecheck
npm run build
npm run build:unpackReleases
GitHub Actions validates every pull request and every push to main. When package.json changes to a new version on main, the auto-tag workflow creates an annotated v<version> tag and dispatches the release workflow. The initial repository commit is intentionally not auto-tagged.
The release workflow creates one draft release, builds Linux, macOS, and Windows artifacts in parallel, uploads a hashes.txt SHA-256 manifest, and publishes only after every platform job succeeds. It can also be dispatched manually for an existing version tag.
Dependabot checks npm packages and GitHub Actions weekly and groups related Electron, Vue/Vite, MCP, and TypeScript updates.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceExposes Playwright browser automation as MCP tools, enabling AI assistants to control a real browser tab-by-tab for form filling, navigation, and more, while preserving the user's active session.
- Flicense-qualityDmaintenanceProvides browser automation capabilities through Claude Desktop and other MCP clients, enabling navigation, screenshot capture, content extraction, and interactive control.
- Flicense-qualityCmaintenanceEnables MCP clients to control a real local browser window for web automation tasks such as clicking, typing, scrolling, and taking screenshots.12
- AlicenseCqualityBmaintenanceExposes a remote browser as MCP tools via Playwright, enabling AI agents to navigate and interact with web pages through DOM snapshots, clicks, typing, and form operations.40228Apache 2.0
Related MCP Connectors
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Live browser debugging for AI assistants — DOM, console, network via MCP.
A paid remote MCP for AI agent browser DevTools MCP, built to return verdicts, receipts, usage logs,
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/Netroforge/bronom'
If you have feedback or need assistance with the MCP directory API, please join our Discord server