fast-browser-mcp
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., "@fast-browser-mcpOpen http://localhost:3000 and generate a QA report"
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.
fast-browser-mcp
fast-browser-mcp is a lightweight MCP server that adds persistent QA state on top of agent-browser.
It does not rebuild browser automation. Instead, it shells out to agent-browser commands and stores compact session state on disk so AI agents can reason over changes across multiple steps.
Features
session-scoped storage (
sessionId) instead of environment-scoped statepersistent snapshots, diffs, errors, timeline, and QA report
simple line-based diff optimized for AI readability
file-based architecture only (no database, no workers, no polling)
MCP-first tool interface for Cursor and other MCP clients
Related MCP server: personal-kg-mcp
Why this project exists
AI-driven QA workflows lose context quickly between actions. This server keeps state per browser session so agents can:
compare state before/after each action
inspect recent console/network failures
generate concise QA reports from deterministic stored artifacts
Requirements
Node.js
>=24(required byagent-browser)npm
agent-browser is installed as a dependency of this package, so consumers do not need a separate global agent-browser install.
Installation
Option A: Run from npm (after publish)
npx fast-browser-mcpOption B: Install globally from GitHub (no npm registry publish required)
npm i -g "git+https://github.com/donleqt/fast-browser-mcp.git"Then run:
fast-browser-mcpOption C: Build from source
git clone https://github.com/donleqt/fast-browser-mcp.git
cd fast-browser-mcp
npm install
npm run build
node dist/index.jsCursor MCP configuration
Add a stdio MCP server entry:
{
"mcpServers": {
"fast-browser-mcp": {
"command": "npx",
"args": ["fast-browser-mcp"]
}
}
}If installed globally:
{
"mcpServers": {
"fast-browser-mcp": {
"command": "fast-browser-mcp",
"args": []
}
}
}Session model
every browser flow is keyed by
sessionIddefault
sessionIdis slug-safe and derived from URLduplicate derived session IDs are reused by default
custom
sessionIdis supported
Examples:
http://localhost:3000->localhost-3000https://app.example.com/dashboard->app-example-com-dashboard
Storage layout
All artifacts are written under:
.fast-browser/
sessions/
{sessionId}/
latest.md
previous.md
diff.md
errors.md
timeline.jsonl
meta.json
screenshot.png
report.mdMCP tools
fast_browser_open({ url, sessionId? })fast_browser_snapshot({ sessionId })fast_browser_diff({ sessionId })fast_browser_errors({ sessionId })fast_browser_act({ sessionId, action, ref?, value? })fast_browser_state({ sessionId })fast_browser_report({ sessionId })fast_browser_sessions({})
Quick example workflow
fast_browser_open({ url: "http://localhost:3000" })
fast_browser_state({ sessionId: "localhost-3000" })
fast_browser_act({ sessionId: "localhost-3000", action: "click", ref: "@e1" })
fast_browser_report({ sessionId: "localhost-3000" })Architecture
src/agentBrowser.ts: centralized CLI mapping and execution wrappersrc/storage.ts: file-based session persistencesrc/tools.ts: MCP tool handlers and orchestrationsrc/diff.ts: readable line-based diffsrc/report.ts: report generation
Scope and non-goals (MVP)
This project intentionally does not include:
environment concepts (
local/staging/prod)database or cloud sync
authentication or multi-user orchestration
web UI, React/Redux hooks, polling loops, background workers
Troubleshooting
agent-browser CLI not found...ensure dependencies are installed (
npm install)verify Node.js version is
>=24
session not found errors
run
fast_browser_openfirst to create/reuse a session
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.
Latest Blog Posts
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/donleqt/fast-browser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server