usable-browser-agent-free
Usable Browser Agent (free personal / evaluation tier)
An MCP server plus a browser extension that lets your AI agent (Claude Code, Codex, or any MCP client) drive your real browser, with all your logged-in sessions, instead of a throwaway automated browser. You log in once, by hand, and the agent operates as you.
This repository is the free tier: the same single-session MCP server as the commercial build, licensed for personal, non-commercial use and for evaluating the product before buying. The Firefox extension for it is published on Firefox Add-ons. Commercial use (in or for a business, in paid client work, or inside a commercial product or service) needs the commercial license, a one-time $39 purchase at https://savvytechsphere.com/usable-browser-agent, which also includes the Chrome build. There is no license key in either tier and nothing checks for one; the tiers differ only in the license grant and the extension identity.
Your passwords stay out of the agent. When the agent logs you in, it passes only a secret alias, never the value. Credentials live in a local vault, are domain-locked (refused on the wrong site), and are redacted from everything the agent reads or screenshots. See docs/CREDENTIAL-SAFETY.md.
How it works
Claude Code / Codex / any MCP client
| MCP over stdio
v
MCP server (Node, this repo) --hosts--> WebSocket ws://127.0.0.1:8876
^ ^
| 53 browser_* tools | (extension connects out)
+------------------------------------------+
Firefox extension (from Firefox Add-ons)
your real profile, your logins -> DOM actions on the active tabThe agent perceives pages through an accessibility/DOM snapshot where every interactive element
has a stable [ref=eN] handle, then clicks and types by ref. No coordinate guessing, no vision
model required. Everything runs on your machine: MCP over stdio, and the extension talks to the
server over a WebSocket bound to 127.0.0.1. Nothing leaves your computer.
The agent always acts on the currently active tab. Keep the tab you want it to use focused.
Get started (about 2 minutes)
Two pieces: this MCP server, which your agent launches, and the Firefox extension, which you install once from Firefox Add-ons.
1. Get the server and run the installer
Needs Node.js 18 or newer and Firefox 142 or newer (macOS first; see docs/INSTALL.md).
git clone https://github.com/Savvy-Tech-Sphere/usable-browser-agent-free.git
cd usable-browser-agent-free
node bin/uba-install.mjs # or: npm run setup(Prefer a download? Grab the zip from the Releases page, unpack it, and run the same command inside the folder.)
The installer checks Node and the port, installs dependencies, registers the MCP server with
Claude Code and/or Codex using this copy's absolute path, runs the smoke test, optionally
stores your first login, and prints the macOS permission steps. It is idempotent; re-running it
never clobbers an existing config. Pass --non-interactive to accept every default.
2. Install the Firefox extension (one time)
Install Usable Browser Agent (free) from Firefox Add-ons: https://addons.mozilla.org/firefox/addon/usable-browser-agent-free/
The toolbar badge shows off, then ON once the extension connects to the MCP server your
agent launched. (The installer also prints these steps, plus the .xpi and Chrome steps that
apply to the commercial bundle; for the free tier the Add-ons listing is all you need.)
3. Log in and go
Log into the site(s) you want the agent to use, then ask your agent to run a browser task, for example: "On the active tab, open my notifications and list the pull requests waiting on me." It will snapshot the page, then act by ref.
Wiring by hand instead of the installer:
# Claude Code (user scope, works from anywhere afterward):
claude mcp add browser --scope user -e UBA_PORT=8876 -- node "$PWD/server/index.js"# Codex: add to ~/.codex/config.toml (use the absolute path to your copy):
[mcp_servers.browser]
command = "node"
args = ["/ABSOLUTE/PATH/TO/usable-browser-agent-free/server/index.js"]
[mcp_servers.browser.env]
UBA_PORT = "8876"Help: docs/INSTALL.md, docs/TROUBLESHOOTING.md, docs/UNINSTALL.md.
Hardened mode is the default
browser_eval (arbitrary JavaScript in the page) is off unless you opt in, and screenshots are
blocked near password fields. CAPTCHAs, anti-bot walls and two-factor prompts are deliberately not
automated: the agent asks you to step in, since it is your browser on your screen. One active tab
at a time.
Usage
Open Firefox or Chrome, log into the site(s) you want the agent to use.
Make sure the extension badge shows ON.
Ask Claude Code / Codex to do something — e.g. "On the active tab, search for X and add the first result to the cart." It will snapshot the page, then act by ref.
Workflow memory
Usable Browser Agent keeps a local workflow memory so agents do not rediscover the same changing website flow every time. This is for reusable task knowledge such as "how to create a new app in Google Play Console", including current page names, visible button labels, gotchas, and successful step order.
Default file:
~/.local/state/usable-browser-agent/workflow-memory.jsonlOverride with UBA_MEMORY_FILE=/path/to/workflow-memory.jsonl. The file is append-only JSONL,
created with mode 0600. Normal recall ignores records that have been superseded or forgotten.
This memory is local to the machine and file path you configure; it is not synced unless you point
multiple agents at the same controlled file.
Expected agent loop:
Before a repeated or multi-step site task, call
browser_workflow_recallwith the task and/or site.Use any matching memory as a starting point, then verify against the live page with
browser_snapshot.After a new or changed path succeeds, call
browser_workflow_rememberwith the durable steps.If an old memory is wrong, save a replacement with
supersedes: ["old_id"], or callbrowser_workflow_forgetif it should disappear from recall.
browser_status, browser_info, browser_navigate, and browser_snapshot also return short
workflow-memory hints when the active tab's domain already has saved memories. Hints are
intentionally brief; call browser_workflow_recall for the full steps.
Do not save passwords, one-time codes, raw account identifiers that are not needed for the workflow,
or transient [ref=eN] handles. The memory store rejects saved steps containing transient refs and
sanitizes stored URLs by dropping query strings and replacing likely account/app/developer id path
segments. Save visible labels and page/section names instead, because refs are rebuilt after every
snapshot.
Credential broker
browser_login and browser_fill_secret let an agent trigger a login without ever receiving the
credential value. The MCP client passes only a secret alias and element refs. Plaintext flows only:
secrets file -> MCP server -> local WebSocket -> browser extension -> DOM fieldThe default vault file is ~/.config/usable-browser-agent/secrets.json; override it with
UBA_SECRETS_FILE=/path/to/secrets.json. The server creates the parent directory if needed and
warns if the secrets file is readable by group/other users; keep it at mode 0600.
The file is a JSON array:
[
{
"alias": "github",
"domains": ["github.com"],
"username": "octo@example.com",
"password": "replace-with-real-secret"
}
]domains are allowed hostnames. Exact and subdomain matches are allowed, so github.com matches
gist.github.com but not evilgithub.com.
For logins, prefer the atomic fill-and-submit tool after taking a snapshot:
browser_login({
"secret": "github",
"username_ref": "e12",
"password_ref": "e13",
"submit_ref": "e14"
})browser_login fills the username when username_ref is provided and the secret has a username,
fills the password, then submits in one extension action. If submit_ref is omitted, it submits the
password field's enclosing form, with Enter as a fallback. The tool returns only a status string such
as logged in via [e14] or submitted form.
browser_fill_secret remains available for non-login flows:
browser_fill_secret({ "ref": "e12", "secret": "github", "field": "username" })
browser_fill_secret({ "ref": "e13", "secret": "github", "field": "password" })There is intentionally no value argument. If the active tab host is not allowed for the alias,
the server refuses the fill and does not send the value to the browser.
Read-back and screenshots are protected in layers:
Password fields and fields filled by the credential broker are redacted in snapshots and
browser_get_value.browser_screenshotis blocked while a broker fill/login is in progress, while a populated password field is present, or while any field is marked as secret-filled. After login navigation removes the credential fields, screenshots are allowed again.The server lazily loads the vault for redaction and scrubs configured secret values from every outbound tool result, including
browser_read_textandbrowser_evalresults.
Hardened mode is on by default: browser_eval (the arbitrary-JS escape hatch) is disabled and
screenshots are blocked whenever any password field exists, even if empty. If you need the
browser_eval escape hatch, opt out by setting UBA_STRICT_SECRETS=0 in the server's environment.
For Claude Code, browser is already registered, and claude mcp add refuses an existing name, so
remove and re-add it, keeping UBA_PORT at the port you installed with (run from your install
folder):
claude mcp remove browser --scope user && \
claude mcp add browser --scope user -e UBA_PORT=8876 -e UBA_STRICT_SECRETS=0 -- node "$PWD/server/index.js"If you installed with UBA_SECRETS_FILE set, add -e UBA_SECRETS_FILE=<absolute path> to that command as well, or the server falls back to the default vault and your stored logins stop resolving. Re-running the installer prints the exact command for your copy.
For Codex, add UBA_STRICT_SECRETS = "0" under [mcp_servers.browser.env]. Restart the agent so
the server picks it up.
Screenshot blocking is a temporal/state guard. Region-masking credential fields within an otherwise returned image is a possible v2 and is not implemented yet.
Tools (53)
Tool | Purpose |
| Search local workflow memory before starting a repeated/changing-site task |
| Save verified reusable workflow steps, pitfalls, and durable UI cues |
| Tombstone stale, sensitive, or incorrect workflow memory |
| Accessibility/DOM tree with |
| Navigation |
| Click by ref — supports right/middle button, double-click, and ctrl/shift/alt/meta modifiers |
| Drag one element onto another (kanban, sortable lists, sliders) |
| Type into a field by ref (optional |
| Fill many fields |
| Fill a username/password from a server-side secret alias |
| Atomically fill username/password from a server-side secret alias and submit |
| Choose a |
| Pointer & keyboard (scroll the window or a specific container; |
| Attach local files to a file input or dropzone — no OS file picker involved |
| Deliver a real paste event to an element (rich editors), from text or the clipboard |
| Read/write clipboard text |
| Read/write clipboard images |
| Auto-answer |
| Make |
| Download a URL to disk (no save dialog) and get its local path |
| Save the current tab as a PDF to the downloads folder |
| Inspect recent network requests (method, URL, status, errors) |
| Answer native HTTP basic-auth prompts from a secret alias |
| Read page/element content |
| Waiting |
| Tabs |
| Diagnostics & vision fallback |
| Report OS-level input availability and any setup needed |
| Real OS-trusted keystrokes (for |
| Real OS-trusted mouse clicks (screen coords or by element ref); macOS + cliclick |
| Inspect/operate native browser dialogs (file picker, print, basic-auth, "Leave page?"); macOS |
| Bring Firefox to the foreground for OS-level input; macOS |
| Hand off to the human for CAPTCHAs / anti-bot walls / 2FA |
| Run JS in the page sandbox; disabled in hardened mode (the default), opt in with |
Coverage tiers
The tool set is designed so an agent can complete any browser task a human could:
In-page interactions (clicks incl. right/double/modifier, drag-and-drop, typing, dialogs, container scrolling, clipboard) — handled entirely in the page.
Browser-level capabilities (downloads without the save dialog, save-as-PDF, HTTP basic-auth, network inspection, geolocation) — handled via WebExtension APIs.
The last mile — native chrome (file pickers, print/auth dialogs) and pages that demand OS-trusted input (
event.isTrusted). The MCP server runs on your Mac, sobrowser_os_*andbrowser_native_dialogdrive the real keyboard/mouse and native dialogs. See OS-level input.Human handoff — CAPTCHAs and anti-bot walls are intentionally not automated;
browser_request_human_helpnotifies you to step in, since it's your real browser on your screen.
Notes & limits
Cross-origin iframes are supported when Firefox can inject the extension content script into the frame; refs from child frames are prefixed internally and route back to that frame. Open Shadow DOM is also supported in snapshots and actions.
Privileged pages (
about:,addons.mozilla.org, the PDF viewer, view-source) can't be scripted by the extension — Firefox blocks extensions there by design. The OS-level sidecar (below) can still type/click in them when needed.Native OS dialogs (file picker, print, basic-auth prompts) are handled three ways: the file picker never needs to open (
browser_upload_filesets the input directly, andbrowser_clickrefuses file inputs); basic-auth is answered bybrowser_http_auth; anything else can be driven withbrowser_native_dialogon macOS.CAPTCHAs / anti-bot walls are intentionally not automated. Use
browser_request_human_helpto hand off to yourself — it's your real browser on your screen.Port is
8876(UBA_PORT). The published extension connects to that port, so keep the default in the free tier.Only one browser/extension connects at a time; the newest extension hello wins (handles reloads). Bare sockets on the port are ignored until they identify as the extension.
UBA_BROWSER_APP_NAME(macOS, optional): overrides which application the OS-level input tools focus before a trusted click. Defaults toFirefoxorGoogle Chromebased on which extension build is connected; set it for nonstandard installs (Chromium, Chrome for Testing). If an explicit override cannot be focused, OS-level clicks fail loudly instead of clicking whatever is frontmost.The MCP server never touches cookies or the network itself — it only relays structured commands to the extension, which acts inside your browser.
OS-level input (macOS)
For the last mile — native browser chrome and pages that reject synthetic input by checking
event.isTrusted — the MCP server can drive the real keyboard and mouse, because it runs on your
Mac (not inside the extension sandbox). These tools are browser_os_type, browser_os_key,
browser_os_click, browser_os_click_ref, browser_native_dialog, and browser_focus_browser.
Prefer the in-page tools (browser_click, browser_type, …) — they're faster and more reliable.
Reach for the OS-level tools only when those genuinely don't work.
One-time setup:
Accessibility permission (needed for trusted keystrokes and native-dialog control): System Settings → Privacy & Security → Accessibility → enable the app that runs the MCP server (your terminal, iTerm, or IDE). Without it,
System Eventskeystrokes silently do nothing.cliclick (needed only for raw coordinate clicks —
browser_os_click*):brew install cliclick
Run browser_native_status (or npm run native) to see what's available. Trusted keystrokes and
native-dialog control work with just the Accessibility grant; raw clicks additionally need cliclick.
Verify it works
npm run smoke # MCP server boots, lists tools, bridge listens (no Firefox needed)
npm test # credential-safety claims + workflow-memory unit tests (no Firefox needed)Security
This tool lets an AI agent take real actions as you on whatever you are logged into. Only log into low-risk sites you have approved for this use. Treat the active tab as live: anything the agent can do there, it may do. Log out of (or do not open) anything sensitive while using it.
For how credentials are kept out of the agent (alias-only logins, domain-locking, redaction, hardened mode) and what that does not protect against, see docs/CREDENTIAL-SAFETY.md.
License and legal
Usable Browser Agent is proprietary software from Savvy Tech Sphere, LLC. This free tier is governed by LICENSE.txt (personal, non-commercial use and evaluation). The commercial license is a one-time $39 purchase at https://savvytechsphere.com/usable-browser-agent (seller of record: Lemon Squeezy), sold as is and self-serve, with a 14-day refund window and no individual support. Details of what each tier includes: docs/FREE-TIER.md.
legal/ACCEPTABLE-USE.md: automate only your own accounts; follow each site's terms
legal/PRIVACY.md: the software collects nothing; it runs entirely on your machine
Questions go through the contact form at https://savvytechsphere.com/#contact.