nekoro-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., "@nekoro-browser-mcpOpen my Gmail inbox and show me the latest unread emails."
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.
Quick Start
1 — Install (Python 3.12+, zero third-party dependencies)
uv tool install nekoro-browserInstalls both commands (nekoro-browser, nekoro-browser-mcp) into their own environment,
so nothing lands in your system Python. No uv? pipx install nekoro-browser works the same way.
From source: git clone https://github.com/zeshuochen/nekoro-browser && cd nekoro-browser && uv pip install -e .
2 — Load the extension
nekoro-browser setupsetup copies the extension directory to your clipboard and then waits — up to three
minutes — until the extension actually connects, so you find out it worked instead of
guessing. Meanwhile you do the part Chrome reserves for humans: open chrome://extensions/,
turn on Developer mode, click Load unpacked, paste the directory.
3 — Start the daemon — give it its own terminal and leave it open; it runs in the foreground and closing that window stops it
nekoro-browser4 — Drive the browser from anywhere else
echo "page_info()" | nekoro-browser
# → {"ok": true, "result": {"title": "...", "url": "..."}}That's it. If step 4 says the daemon isn't running, or a command times out, run
nekoro-browser --doctor — it checks the daemon, the extension and the service worker
separately and tells you which one is down.
Related MCP server: Browser Automation MCP
Why Not --remote-debugging-port?
Since Chrome 136, --remote-debugging-port / --remote-debugging-pipe refuse the default profile — you must point Chrome at a non-default --user-data-dir, i.e. a clean instance with none of your logins. An extension's chrome.debugger is not subject to that restriction, which is why nekoro goes through an extension.
CDP WebSocket | playwright-cli | opencli | nekoro-browser | |
Approach |
| Playwright extension | OpenCLI extension | Custom extension + persistent WebSocket |
Install | one flag |
| npm / desktop app |
|
Login state | ❌ fresh instance | ✅ | ✅ | ✅ |
Modify the extension | — | Edit Playwright source | Edit OpenCLI source | ✅ right in this repo |
Self-healing | ❌ | ❌ | ❌ | ✅ Agent edits helpers at runtime |
MCP | ❌ | ✅ (separate | ❌ | ✅ built in, 46 tools via |
Site knowledge | ❌ | ❌ | ❌ | ✅ your notes and scripts are handed to the agent on navigate |
Examples
Send a multi-step flow in one shot with a heredoc. Every helper is a top-level await:
nekoro-browser <<'PY'
await new_tab("https://example.com")
print((await page_info())["title"]) # Example Domain
print((await get_markdown(max_chars=200))["result"])
print((await state(max_items=3))["result"]) # indexed interactive elements, model-ready
await close_tab()
PYstate() numbers the elements and click_index(n) clicks by number — the model never has to guess a CSS selector:
nekoro-browser <<'PY'
await navigate("https://github.com/search?q=browser+automation&type=repositories")
await wait_for_load()
print((await state(max_items=40))["result"])
await click_index(12)
PYAll helpers are documented in SKILL.md.
MCP (any MCP client)
Every function in helpers.py is reflected into an MCP tool (46 today) — no glue code.
Prerequisite: the daemon must be running (nekoro-browser, its own terminal). The MCP
server is a thin forwarder — it talks to that daemon over the same authenticated path as
echo ... | nekoro-browser, and the daemon is what owns the Chrome connection.
The command to register is always nekoro-browser-mcp. Only the config shape differs:
Claude Code
claude mcp add nekoro-browser -- nekoro-browser-mcpClaude Desktop (Settings → Developer → Edit Config) · Cursor (~/.cursor/mcp.json,
or .cursor/mcp.json for one project) · Cline (MCP Servers → Configure MCP Servers)
{ "mcpServers": { "nekoro-browser": { "command": "nekoro-browser-mcp" } } }Claude Desktop config file: macOS ~/Library/Application Support/Claude/claude_desktop_config.json · Windows %APPDATA%\Claude\claude_desktop_config.json
opencode (opencode.json) — note command is an array, and the key is mcp
{ "mcp": { "nekoro-browser": { "type": "local", "command": ["nekoro-browser-mcp"], "enabled": true } } }Codex (~/.codex/config.toml, or codex mcp add nekoro-browser -- nekoro-browser-mcp)
[mcp_servers.nekoro-browser]
command = "nekoro-browser-mcp"VS Code / Copilot (.vscode/mcp.json, or MCP: Open User Configuration) — the key is
servers, not mcpServers
{ "servers": { "nekoro-browser": { "command": "nekoro-browser-mcp" } } }Prefer not to install anything up front? Replace the command with uvx, which fetches and
runs on demand the way npx -y does — e.g. "command": "uvx", "args": ["--from", "nekoro-browser", "nekoro-browser-mcp"]. That only removes the install step for the MCP
server; the daemon still has to be installed and running.
Restart the client afterwards. If the tools don't show up, run nekoro-browser --doctor
first — a dead daemon looks exactly like a broken MCP config — then check the client's MCP
log (Claude Desktop keeps them in ~/Library/Logs/Claude on macOS, %APPDATA%\Claude\logs
on Windows).
What you get beyond the tool list: two escape hatches ship as tools — cdp (raw CDP
command) and exec_python (arbitrary Python in the daemon namespace, so a whole multi-step
flow costs one round trip). Screenshots come back as image content so clients render them
inline. A helper's own failure ({"ok": false}) is surfaced as isError instead of being
dressed up as success. And when you navigate to a site you have notes or scripts for, they
ride along in the tool result — see Self-Healing and Site Knowledge.
API
Category | Commands |
Navigation |
|
Page info |
|
JavaScript |
|
Interaction |
|
Dialogs |
|
Waiting |
|
Screenshots |
|
Architecture
flowchart TD
A["Chrome tab — your profile, your logins"]
B["Extension background.js<br/>chrome.debugger / CDP"]
C["Python daemon<br/>127.0.0.1:28417"]
D["CLI<br/>nekoro-browser"]
E["MCP server<br/>nekoro-browser-mcp"]
A <-->|CDP| B
B <-->|persistent WebSocket| C
D -->|"HTTP /exec · token auth"| C
E -->|"HTTP /exec · token auth"| CChrome extension (background.js) —— chrome.debugger / CDP
↕ persistent WebSocket
Python daemon (127.0.0.1:28417)
↕ HTTP /exec (token auth)
CLI (nekoro-browser) · MCP server (nekoro-browser-mcp)helpers.py (47 thin wrappers) → CDP commands, each ≤10 lines, none of them aware of any particular website.
lifecycle.py manages the daemon: pid file + process fingerprint (avoids killing a reused pid), self-heal on stale daemon (CDP probe fails → auto cleanup and restart), localhost requests bypass the system proxy.
The extension is hardened against MV3 service worker eviction: a content_scripts heartbeat (an independent wake vector living in the page, reconnects and wakes the SW even after it's killed) + onStartup (reconnects instantly on Chrome cold start) + reattaches the last-driven tab after a restart instead of drifting to a blank tab.
Self-Healing and Site Knowledge
When an agent hits a gap it writes the missing piece and uses it immediately — nothing is recompiled, no daemon restart, no extension reload.
src/nekoro_browser/agent_helpers.pyis scratch paper: reloaded on every/exec, good for a quick experiment. It lives inside the installed package, so an upgrade overwrites it.Anything worth keeping goes in your own skills directory (
NEKORO_DOMAIN_SKILLS, falling back todomain-skills/in the repo), one folder per site holding both kinds of material:<site>/*.mdfor knowledge and<site>/*.pyfor workflows. Scripts are loaded into the/execnamespace on every call and can use the built-in helpers directly.
The point is that this material finds the agent instead of waiting to be discovered.
navigate() and new_tab() return two extra fields when the site has any:
{'ok': True, 'loaded': True,
'notes': ['example/search.md — Example — search results'],
'actions': ['open_first_result(query) — search and open the top hit']}notes lists titles only — full text on every navigation would turn a one-time write into a
permanent read cost. actions lists functions that are already callable, so the agent runs
one instead of rebuilding the flow. list_site_actions() shows everything loaded, including
files that failed to load. Conventions for what to record — and what not to — are in
domain-skills/README.md.
Platform Support
Platform | Status |
Windows | Primary development platform, exercised end to end |
Linux / macOS | The code has the branches (XDG dirs, |
Known Limitations
Unpacked extensions get disabled by Chrome. An extension installed via "Load unpacked" may be switched off automatically after a Chrome update or restart, or hidden behind the "Disable developer mode extensions" prompt. When
--doctorreports Extension/SW not responding, re-enable it inchrome://extensions/first. This project is not published to the Chrome Web Store, so the limitation is not going away soon.Service worker keepalive is not 100%. MV3 eviction timing is Chrome's call. The heartbeat +
onStartup+ reattach cover the vast majority of cases, but unattended long-running cron jobs should still health-check with--doctorand retry.One active tab at a time. Tabs can be listed and switched (
list_tabs/switch_tab), but commands always go to the current active tab — there are no parallel sessions.The MCP server handles requests serially. During a
wait_selector(timeout=90)every other request on that connection (includingping) queues behind it. Open separate client connections if you need concurrency.
Reference
CLI
Command | What it does |
| Start the daemon (foreground) |
| Guided install: copies the extension path, then waits until the extension actually connects |
| End-to-end diagnostic (daemon + extension + SW all alive?) |
| Stop the daemon |
| Stop and restart (foreground) |
| Reload the extension's service worker — run before a batch job for a clean state |
| Print the extension directory (for "Load unpacked") |
| Run the daemon on port N (default 28417) |
| Run one snippet, print the result |
| Seconds to allow a snippet (default 120 — page loads are slow) |
| Pipe mode (daemon must already be running) |
Configuration
The daemon listens on 28417 by default. To change it:
Side | How |
Python (daemon + CLI + MCP) |
|
Extension | Extension details → Extension options → set the port → Save (reconnects immediately, no reload) |
Both sides must agree. Clients don't need the flag repeated: the daemon records its
actual port in <data dir>/port, so a plain echo ... | nekoro-browser finds a daemon
running on a non-default port. Precedence is --port > NEKORO_PORT > that file > default.
Troubleshooting
Symptom | Cause | Fix |
| Daemon not started | Run |
CDP timeout | Extension not connected / service worker asleep |
|
Extension disabled by Chrome | Unpacked extension + Chrome update | Re-enable it in |
Page unchanged | Extension not attached to tab | Open a regular (non-chrome://) page, restart daemon |
Port in use | Stale process | Kill the process on port 28417, or just run |
Security
The daemon listens on 127.0.0.1 and /exec runs arbitrary Python, so the transport is guarded:
CLI / MCP → daemon (
/exec,/raw): a per-session token is written to a user-private file (%LOCALAPPDATA%\nekoro-browser\token,chmod 600on POSIX). Clients read it and sendX-Nekoro-Token; missing/wrong token →403. Web pages and remote hosts can't read local files, so they can't obtain it./pingstays open.Extension → daemon (
/ws): the handshakeOriginmust bechrome-extension://…; a web page'sWebSocketto localhost carries its own origin and is rejected.
Same-user local processes can read the token file — that boundary matches the OS user account, as with browser-harness's chmod 600.
Feedback
Hit a problem, or missing a helper you need? Open an
issue.
For bugs, include the output of nekoro-browser --doctor, your Chrome version and OS — saves a round trip.
PRs welcome. Run the tests first: for f in tests/test_*.py; do uv run python "$f"; done (CI runs them on all three platforms too).
Acknowledgments
Core architecture derived from:
browser-harness — thin-wrapper philosophy (each function is a CDP alias, ≤10 lines), pipe mode, self-healing
agent_helpers.py, domain-skills directory structure,cdp()raw accessbrowser-act —
state()indexed element tree,*[N]change markers,waitSelector()state polling,getMarkdown()page extractionPlaywright — CDP
Input.dispatchMouseEventreal mouse events (isTrusted:true), extension + daemon dual-path architecture
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceAn MCP server that provides AI assistants with full control over a real browser session via a Chrome extension, supporting 36 tools for navigation, data extraction, and DOM manipulation. It bypasses bot detection by utilizing the user's active browser session, including cookies, authentication tokens, and installed extensions.Last updated212MIT
- AlicenseAqualityDmaintenanceMCP server for AI browser automation with tools for navigation, actions, data extraction, and scripting, supporting local and cloud execution.Last updated141032Apache 2.0

Browser MCPofficial
Alicense-qualityFmaintenanceAutomate your browser with AI using a Chrome extension and MCP server, enabling logged-in sessions and stealth automation.Last updated10,5496,910Apache 2.0- FlicenseCqualityDmaintenanceEnables browser automation, including navigation, form filling, login with CAPTCHA handling, and element manipulation, using a Chrome-based MCP server.Last updated364
Related MCP Connectors
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Automate cloud browsers to navigate websites, interact with elements, and extract structured data.…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/zeshuochen/nekoro-browser'
If you have feedback or need assistance with the MCP directory API, please join our Discord server