Skip to main content

Firefox Browser MCP — Server

An MCP server that lets an LLM client drive a real Firefox browser — every tab, its DOM, arbitrary CSS selectors, and its network/API traffic. It talks to the companion firefox-extension/ WebExtension over a local WebSocket bridge.

MCP client (Claude Desktop, etc.)
        │  stdio (MCP)
        ▼
firefox-browser-mcp  ──ws://127.0.0.1:9010──►  Firefox extension  ──►  All tabs

Run with uvx

uvx --from ./mcp-server firefox-browser-mcp

Once published to PyPI: uvx firefox-browser-mcp.

CLI options

Connection settings can be passed as arguments (they override the FBMCP_* env vars):

uvx firefox-browser-mcp --host 127.0.0.1 --port 9010 --log-level INFO
uvx firefox-browser-mcp --version
uvx firefox-browser-mcp --help
Flag Default Env fallback
--host 127.0.0.1 FBMCP_HOST
--port 9010 FBMCP_PORT
--log-level INFO FBMCP_LOG_LEVEL

The Firefox extension connects to this bridge; use the extension popup's Enable/Disable toggle to turn the connection on or off.

Configure your MCP client

{
  "mcpServers": {
    "firefox-browser": {
      "command": "uvx",
      "args": ["--from", "/absolute/path/to/mcp-server", "firefox-browser-mcp"]
    }
  }
}

Targeting tabs

Every tab has a stable numeric id (plus title and url). Get them with browser_list_tabs. Most tools accept an optional tab argument:

tab value Meaning
omitted the currently active tab
123 / "123" the tab whose id is 123
"github.com" first tab whose url contains it
"Inbox" first tab whose title contains it

Environment variables

Variable Default Description
FBMCP_HOST 127.0.0.1 WebSocket bridge host
FBMCP_PORT 9010 WebSocket bridge port
FBMCP_LOG_LEVEL INFO Python logging level

If you change the port, update the bridge URL in the extension popup.

Tools

Tabsbrowser_list_tabs (id/title/url of every tab, all windows), browser_select_tab, browser_new_tab, browser_close_tab.

Navigationbrowser_navigate, browser_go_back, browser_go_forward, browser_reload.

Inspection & extractionbrowser_snapshot (accessibility tree with ref ids), browser_query (any CSS selector → refs, text, attributes, html), browser_get_text, browser_get_html, browser_get_attribute, browser_eval (run JS and return the result), browser_get_url, browser_screenshot, browser_get_console_logs.

Network / APIbrowser_get_network (captured requests with method, url, status, content-type, request & response bodies), browser_clear_network.

Interactionbrowser_click, browser_type, browser_hover, browser_select_option, browser_press_key, browser_scroll, browser_wait. Interaction tools accept either a ref (from snapshot/query) or a CSS selector.

Statusbrowser_status.

Examples (what an agent can do)

  • "List my tabs, then read the article in the tab with 'wikipedia' in its url": browser_list_tabsbrowser_get_text(tab="wikipedia").
  • "Grab all product prices": browser_query(selector=".price") or browser_eval(script="return Array.from(document.querySelectorAll('.price')).map(e=>e.textContent)").
  • "Show the API calls this page made": browser_get_network(filter="xmlhttprequest") (includes JSON response bodies).
  • "Log into the form": browser_type(selector="#email", text=...), browser_type(selector="#password", text=..., submit=True).

Development

cd mcp-server
uv venv && source .venv/bin/activate
uv pip install -e .
python -m firefox_browser_mcp.server

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firefox_browser_mcp-0.2.0.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

firefox_browser_mcp-0.2.0-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file firefox_browser_mcp-0.2.0.tar.gz.

File metadata

  • Download URL: firefox_browser_mcp-0.2.0.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for firefox_browser_mcp-0.2.0.tar.gz
Algorithm Hash digest
SHA256 c38988be97e291b64a1147e01ed12245e31cdde0f88b52dd0319dac2ea067c6f
MD5 b6a55cea75554c72657df71b58518bfe
BLAKE2b-256 b87dcd85fd79335214f64f16b14cf1c066c5ec1f9ecd0c02eb541e2281f664d0

See more details on using hashes here.

File details

Details for the file firefox_browser_mcp-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for firefox_browser_mcp-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f61e446fa234e89682168ef2be47d8304acee5dc9cc56a4562f9b30bf1afccad
MD5 61b9f76cfc2bc07c725149f4f264a232
BLAKE2b-256 24593a4c3d85855699aa947c00c07735fc1f359ea24eea2ddf52378c8b4534bd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page