Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A local Firefox bridge for MCP agents that enables tab control, DOM interaction, mouse/keyboard actions, and screenshots.

README.md

fire-fodex

Firefox を、MCP agent からそのまま触るためのローカルツールです。

Chrome じゃなくて Firefox を使いたい。

でも AI agent からタブを見たり、クリックしたり、スクショを取ったりしたい。

そのために WebExtension、native messaging、MCP server をつないでいます。

OpenAI の Chrome plugin の移植ではありません。Firefox 用に別で作った橋です。

まだ v1 なので、かなりローカル開発者向けです。拡張機能は手で読み込みます。MCP server も自分で起動します。普段使いのブラウザプロファイルで動かす前に、コードは一回見てください。

できること

  • Firefox のタブ一覧を見る
  • 新しいタブを開く
  • 既存タブを agent 用に確保する
  • ページ移動、リロード、戻る、進む
  • 表示中ページの軽い snapshot を取る
  • 画面内の文字を探す
  • クリック、入力、貼り付け、フォーカス、テキスト選択、キー入力
  • マウス移動、スクロール、ドラッグ
  • 文字や selector が出るまで待つ
  • 通常スクショと full-page スクショ

やらないこと

  • Firefox の cookie、保存済みパスワード、profile database、localStorage は直接読みません
  • ブラウザの情報を勝手に外へ送りません
  • cloud sync、account auth、操作録画、権限 UI はありません
  • AMO 向けの配布はまだしていません

firefox_eval はあります。ページ側で少しだけ処理したい時の逃げ道です。

ただし sandbox ではありません。cookie、storage、password 抜き取りっぽい文字列は止めますが、それで安全と言い切れるものではないです。信用できない agent に、普段の Firefox profile を触らせないでください。

必要なもの

  • Windows
  • Firefox Stable
  • Node.js 24+
  • npm 11+

セットアップ

cd path\to\fire-fodex
npm install
npm run build
npm run install:host

Firefox 側で拡張機能を読み込みます。

  1. Firefox を開く
  2. about:debugging#/runtime/this-firefox に行く
  3. Load Temporary Add-on... を押す
  4. extension\manifest.json を選ぶ

MCP server を起動します。

npm run mcp

MCP client 側の設定例です。

{
  "mcpServers": {
    "fire-fodex": {
      "command": "node",
      "args": [
        "path\\to\\fire-fodex\\dist\\mcp-server\\index.js"
      ]
    }
  }
}

Tools

  • firefox_list_tabs
  • firefox_claim_tab
  • firefox_open_tab
  • firefox_navigate
  • firefox_snapshot
  • firefox_screenshot
  • firefox_find
  • firefox_wait_for
  • firefox_mouse_click
  • firefox_mouse_move
  • firefox_scroll
  • firefox_drag
  • firefox_focus
  • firefox_select_text
  • firefox_paste
  • firefox_eval
  • firefox_click
  • firefox_type
  • firefox_keypress
  • firefox_back
  • firefox_forward
  • firefox_reload
  • firefox_close_tab
  • firefox_release

基本は、見てから触る流れです。

  • firefox_snapshotfirefox_find で画面を見る
  • form は firefox_focusfirefox_pastefirefox_typefirefox_keypress
  • pointer 操作は firefox_mouse_clickfirefox_mouse_movefirefox_scrollfirefox_drag
  • ページが変わる操作の後は firefox_wait_for
  • 見た目が大事なら firefox_screenshot

確認

npm run typecheck
npm test
npm run lint:extension
npm run check
powershell -ExecutionPolicy Bypass -File scripts\smoke.ps1

smoke.ps1 は、native host を入れて Firefox 側で拡張機能を読み込んでから動かしてください。

権限

拡張機能は <all_urls> を要求します。普通のサイトを横断して操作するためです。

強い権限です。v1 は「中身を読んで、自分のローカルで動かす」人向けとして置いています。

仕組み

AI agent / MCP client
        |
        | stdio MCP
        v
fire-fodex MCP server
        |
        | localhost JSON request
        v
native messaging host
        |
        | Firefox native messaging stdio
        v
Firefox WebExtension
        |
        | tabs + content scripts
        v
Firefox tabs

拡張機能がつながっている間、native host は 127.0.0.1:17365 で待ち受けます。

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.