browser-memory
v0.1.17
Published
Local MCP server that gives an agent a reusable memory of web actions (learn once, replay deterministically).
Readme
Install
Requires Node.js ≥ 20 and Chrome (uses your system Google Chrome if present, otherwise Playwright's Chromium).
One command configures any supported agent — Codex, Cursor, VS Code (Copilot) and Claude Code.
Install for a host (codex · cursor · vscode · claude):
npx -y browser-memory install codexUndo (same host forms):
npx -y browser-memory uninstall codexIt's idempotent (never overwrites an existing entry). Restart the app afterwards.
Any other MCP host — drop this into its config (most clients use the mcpServers key; VS Code uses servers):
{ "mcpServers": { "browser-memory": { "command": "npx", "args": ["-y", "browser-memory"] } } }Registry (optional)
On by default — it pulls ready-made tools from the hosted registry (https://api.browser-memory.com).
Turn it off to run 100% local:
npx browser-memory config server offTurn it back on:
npx browser-memory config server onPoint it at another backend:
npx browser-memory config set-url https://your-registry.example.com