firefox-bridge
Allows MCP-capable CLIs to operate your real, already-logged-in Firefox tabs, providing tools to navigate, click, type, read pages, list elements/frames, take screenshots, capture console/network, and manage tab leases.
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., "@firefox-bridgeread the current page in Firefox and tell me what it's about"
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.
firefox-bridge
Lets MCP-capable CLIs (Claude Code, Codex, etc.) operate your real, already-logged-in Firefox tabs — a claude-in-chrome-style bridge, but for Firefox, and without any OS-level input simulation.
Why
Browser-automation tools built on CDP/Playwright either drive a fresh, logged-out browser instance (so they can't touch your real session) or, on Firefox, hit a known issue where headed-mode mouse events get dispatched through the OS input layer and can hijack the real cursor (anthropics/claude-code#45552).
firefox-bridge takes a different approach: a WebExtension that talks to your browser's own
browser.tabs/browser.scripting APIs directly, the same way claude-in-chrome does via
chrome.debugger. No simulated input, no separate browser profile — it operates the tabs
you're already using, logged into whatever you're logged into.
Related MCP server: fire-fodex
Architecture
[MCP Server] ←(stdio)→ [CLI]
↕ Unix domain socket (token-authenticated)
[Native Host] ←(Native Messaging, stdio)→ [Firefox Extension] → your real tabsTab-lease concurrency: multiple CLI sessions can each hold their own tab(s) without stepping on each other.
Policy gate: every privileged operation (read, click, screenshot, ...) checks a user-configurable blacklist; a blacklisted site triggers a one-time confirmation popup (allow once / allow for session / deny) rather than silently proceeding.
Payload handles: large data (screenshots) goes through a temp-file + opaque-handle path instead of inline in messages, keeping under the native-messaging size cap.
Frame-aware:
click/type/read_page/list_elementscan target a specific<iframe>(discovered vialist_frames); each frame is gated by its own blacklist policy independently, so an allowed top-level page can't become a path to read a blacklisted embedded frame.
Tools
navigate, click, type, read_page, list_elements, list_frames, screenshot,
start_console/get_console, start_network/get_network, acquire_tab/release_tab,
list_tabs.
list_elements discovers real CSS selectors for interactive elements instead of guessing
blindly — each one is guaranteed to match exactly the inspected element on a follow-up
click/type.
Install
1. Firefox extension
Grab the signed .xpi from the latest release
and either drag it into a Firefox window, or about:addons → gear icon → "Install Add-on
From File...". This installs permanently (survives restarts) — unlike loading
extension/manifest.json as a Temporary Add-on via about:debugging, which Firefox wipes
every time it restarts.
To build and sign your own .xpi from source: get an API key/secret from
AMO, then run
AMO_API_KEY=... AMO_API_SECRET=... node scripts/sign-extension.js2. Native messaging host
npm install
node scripts/install-native-manifest.jsRegisters the native messaging manifest so Firefox can spawn the native host. Restart Firefox after this and after installing the extension.
3. MCP server
Register with Claude Code (or any MCP-capable CLI):
claude mcp add firefox-bridge -s user -- node mcp-server/src/index.js-s user makes it available in every session, not just one project. Verify with
claude mcp list — should show firefox-bridge: ... - ✔ Connected once the extension is
loaded and the native host is running.
Development
npm test # native-host + mcp-server unit tests
npx web-ext lint --source-dir extension # extension manifest/lint checkThe extension itself (extension/*.js) has no automated test harness — see
docs/manual-verification-checklist.md for the
manual checklist to run through after changes there.
Known limitations
list_tabsisn't policy-gated yet (returns all tab URLs/titles, including blacklisted ones)Console/network capture is top-frame only, not frame-aware
Text truncation is char-count-based, not byte-based (risk on CJK-heavy pages)
WebMCP integration deferred to a future version
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.
Related MCP Servers
- AlicenseAqualityAmaintenanceDrive Firefox-based browsers (Floorp, LibreWolf, Zen, Waterfox, Mullvad, Firefox) from any MCP client — read pages, screenshot, click, fill forms and manage tabs in your real session, over Marionette/WebDriver. OS input & JS eval locked by default.Last updated41521MIT
- AlicenseBqualityCmaintenanceA local Firefox bridge for MCP agents that enables tab control, DOM interaction, mouse/keyboard actions, and screenshots.Last updated24MIT
- Alicense-qualityBmaintenanceEnables CLI coding agents to interact with your live browser tabs via MCP, using your real sessions and cookies without a sandbox.Last updatedMIT
- Alicense-qualityCmaintenanceLets MCP clients control a live Zen/Firefox browser to navigate, click, fill forms, screenshot, and execute JavaScript through a persistent server and browser extension.Last updatedMIT
Related MCP Connectors
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
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.
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/raychao-oao/firefox-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server