@mindstone/mcp-server-browser-automation
v0.2.2
Published
Browser automation MCP server — visible-by-default browser control via accessibility snapshots, navigation, form filling, screenshots, and tab management. Set AGENT_BROWSER_SHOW_WINDOW=false to run quietly.
Readme
@mindstone/mcp-server-browser-automation
Browser control you can watch: open pages, sign in, click around, fill forms, take screenshots, and keep a reusable browser session.
Best for practical web tasks where the user needs to see, approve, or reuse browser state instead of running a full browser-testing stack.
Status
- Version: 0.2.2 · npm
- Auth: None (
server.json) - Tools: 21 (navigation, observation, interaction, sessions, files)
- Surface: browser-automation
- Machine-readable:
STATUS.json
Why this exists
Microsoft's Playwright MCP is a strong choice for broad browser automation and testing. This connector is deliberately smaller and more visible.
Use it when an assistant needs to work through ordinary websites in a way a person can follow: open a real browser, let the user complete a login, click through admin screens, fill forms, take screenshots, and come back to the same session later. The point is trust and day-to-day usefulness, not exposing every browser-testing capability.
Example interaction
"Open https://example.com, tell me the page title, and take a screenshot."
Tools the host calls:
browser_navigate— opens the URL in the configured browser session.browser_get_page_info— returns the current URL and page title.browser_screenshot— captures a PNG screenshot.
Response (trimmed):
{
"ok": true,
"url": "https://example.com/",
"title": "Example Domain"
}Requirements
- Node.js 20+
- npm
- The
agent-browserCLI onPATH, ornpxavailable so the server can install it automatically.
One-click install
After clicking the button, your host will prompt you to fill: AGENT_BROWSER_SESSION_NAME, AGENT_BROWSER_SHOW_WINDOW.
{
"mcpServers": {
"Browser Automation": {
"command": "npx",
"args": [
"-y",
"@mindstone/mcp-server-browser-automation"
],
"env": {
"AGENT_BROWSER_SESSION_NAME": "mcp",
"AGENT_BROWSER_SHOW_WINDOW": "true"
}
}
}
}Quick Start
npx
npx -y @mindstone/mcp-server-browser-automationOr install globally:
npm install -g @mindstone/mcp-server-browser-automation
mcp-server-browser-automationThis server requires the agent-browser CLI binary to control the browser.
Binary Resolution
- PATH lookup (preferred): If
agent-browseris on your PATH, it is used directly. - npx fallback: If the binary is not found, the server automatically falls back to
npx -y [email protected].
Installing agent-browser
npm install -g agent-browserOr let the npx fallback handle it automatically (slower on first use due to download).
Configuration
No API keys or credentials are required. The server communicates with the browser via the agent-browser CLI.
| Variable | Required | Description |
|---|---|---|
| AGENT_BROWSER_SESSION_NAME | No | Session name for browser persistence (default: mcp) |
| AGENT_BROWSER_SHOW_WINDOW | No | Set to false to run without a visible browser window. Default is visible (true). |
| MCP_WORKSPACE_PATH | No | Workspace directory that browser_pdf writes into and browser_upload reads from. Defaults to the system temp directory. See Security notes. |
MCP Host Configuration
{
"mcpServers": {
"browser-automation": {
"command": "npx",
"args": ["-y", "@mindstone/mcp-server-browser-automation"]
}
}
}Available Tools (21)
Navigation
- browser_navigate — Navigate to a URL
- browser_back — Navigate back in browser history
- browser_forward — Navigate forward in browser history
- browser_wait — Wait for an element to appear or a specified time
Observation
- browser_snapshot — Get the page accessibility tree with interactive element references
- browser_screenshot — Take a screenshot of the current page
- browser_get_page_info — Get the current page URL and title
- browser_get_text — Get the text content of the page or a single element
- browser_pdf — Save the current page as a PDF inside the workspace directory (refuses to overwrite existing files unless
overwrite: true)
Interaction
- browser_click — Click an element using @ref or CSS selector
- browser_fill — Clear a field and fill it with text
- browser_type — Type text character by character (real keystrokes)
- browser_press_key — Press a keyboard key
- browser_scroll — Scroll the page in a direction
- browser_select — Select an option from a dropdown
- browser_hover — Hover over an element
- browser_upload — Upload workspace files to a file input (regular files only, staged privately before upload)
- browser_evaluate — Execute JavaScript in the page context (on by default;
destructiveHint: trueso hosts can require confirmation — see Security notes)
Session Management
- browser_tabs — List open tabs or switch to a tab
- browser_close — Close the browser session
- browser_authenticate — Open a visible browser for manual login
Workflow
The typical workflow uses accessibility snapshots for reliable element targeting:
browser_navigate→ open a pagebrowser_snapshot→ see interactive elements with @ref IDsbrowser_click/browser_fill→ interact using @ref referencesbrowser_screenshot→ visual verification
Security notes
Browser automation has a large attack surface: the agent-browser CLI controls a real headless browser that loads URLs you pass it, runs page-side JavaScript, and persists cookies and session state across runs. Read this section before deploying.
browser_evaluate runs by default — host confirmation is the gate
browser_evaluate lets the model execute arbitrary JavaScript inside the page context — the security equivalent of giving the model a shell on whatever site it has just navigated to. The tool is registered unconditionally (capability-first); the safeguard is the host's tool-approval layer. The tool is marked destructiveHint: true, so MCP hosts SHOULD require explicit user confirmation before each invocation. Do not configure a host to auto-approve this tool.
URL scheme deny-list
browser_navigate and browser_authenticate accept only http: and https: URLs (plus the special about:blank). Other URL schemes are refused before the underlying agent-browser CLI is invoked:
file:— would let pages read local filesystem pathschrome:andchrome-extension:— internal browser pages and installed extensionsjavascript:— equivalent toeval()against the current documentdata:— inlined attacker-controlled HTML/JS payloadsview-source:— defeats the same-origin policy on rendered contentabout:— privileged internal pages (about:config,about:cache,about:debugging, …); onlyabout:blankis permitted
Cookie and session persistence
The connector tells agent-browser to use a named, persistent session via AGENT_BROWSER_SESSION_NAME (default value: mcp). All cookies, localStorage data, and any logins performed via browser_authenticate are stored on disk under that session name and reused across runs. Anyone who can read the session storage — the local user, other tools running as the same user, or backups — can also use those logged-in sessions.
To override the session name (for example, to keep separate profiles per project) set AGENT_BROWSER_SESSION_NAME explicitly in the host's MCP server config. To wipe state, close the browser via browser_close and remove the session directory managed by agent-browser.
Recommended deployment posture
- Run the connector against a separate browser profile — a dedicated
AGENT_BROWSER_SESSION_NAMEper MCP host. Do not reuse your daily browser profile: the connector reads and overwrites cookies in whichever profile it is pointed at, and a malicious page can ride the existing session of any site you are logged into. - Require host confirmation for
browser_evaluate— it runs by default; every call executes arbitrary JavaScript in the page context. - Require host confirmation for
browser_authenticateand any flow that may navigate to authenticated sites — otherwise prompt injection in fetched content can drive the browser at sites the user is logged into. - Returned page content is enveloped as untrusted — accessibility snapshots, page text, titles, URLs, tab lists, and
browser_evaluateoutputs come from arbitrary websites and may contain prompt-injection attempts. The connector wraps them in<untrusted-content source="…">envelopes (with close-tag breakout escaping) so hosts and models treat them as data, not instructions. Keep that treatment on your side: don't strip the envelopes, and don't let page text alone trigger irreversible actions.
Workspace sandbox for file tools
browser_pdf writes PDF files and browser_upload reads files, and both are constrained to a workspace directory: MCP_WORKSPACE_PATH when set, otherwise the system temp directory. Paths are canonicalised before use, so .. traversal, absolute paths outside the workspace, and in-workspace symlinks pointing outside it are all refused before the agent-browser CLI runs. Set MCP_WORKSPACE_PATH explicitly to control exactly where page captures land and which files the model can attach to a page. A MCP_WORKSPACE_PATH that cannot be resolved fails closed: file tools refuse to run rather than fall back to weaker checks.
Both tools are marked destructiveHint: true, so hosts can require user confirmation: browser_upload can trigger an immediate remote upload on pages that submit when the file input changes, and browser_pdf writes a local file.
Additional hardening:
- Staged file hand-off. Validated files are never re-opened by pathname.
browser_uploadsources are opened once (O_NOFOLLOW+O_NONBLOCK, so a post-validation leaf-symlink swap fails and a planted FIFO cannot wedge the open), verified to be regular files (directories, devices, and FIFOs are refused), bound to a fresh confined resolution by device+inode (an intermediate-directory swap after validation redirects the resolution and is refused withUPLOAD_SOURCE_CHANGED), and copied into a fresh private staging directory that the CLI consumes.browser_pdfhas the CLI write into a fresh private staging directory, then installs the PDF at the requested path: the destination directory's canonical identity is pinned before the CLI runs and re-verified before installing, so an intermediate directory swapped to a symlink mid-call is refused, and exclusive-create semantics refuse a file or symlink planted at the destination leaf instead of writing through it. - No silent overwrite.
browser_pdfrefuses an existingfile_pathwith aFILE_EXISTSerror unless the caller explicitly passesoverwrite: true. Even then, a destination that is a directory is refused (DESTINATION_IS_DIRECTORY) — the overwrite delete is a bare unlink and never recurses. - Enveloped errors. Error output from the
agent-browserCLI can contain page-authored text; it is wrapped in<untrusted-content>envelopes (with close-tag breakout escaping) before reaching the model, and timeout errors do not echo the command's argument values.
Licence
FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-04-08.
