real-browser-mcp
v1.3.0Connect AI coding agents to your real logged-in Chrome via MCP + extension. Not headless. Not a cloud agentic browser.
by Ofer ShapiraMIT47updated 7 hours ago
Source
git clone https://github.com/ofershap/real-browser-mcpClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
├── plugin.json├── skills/real-browser-control/SKILL.md└── mcp.json
Skills1
Connect an AI coding agent to the user's REAL Chrome via Real Browser MCP (local MCP server + Chrome extension over localhost WebSocket). Use for live UI verification, already-open tabs, existing cookies/SSO/2FA, staging admin panels, and any task where headless Playwright or a cloud agentic browser would miss the human's session. Triggers: control my chrome, real browser MCP, use my logged-in browser, not headless, verify in the browser I have open, click with my SSO session, agentic browser but real Chrome, Chrome extension MCP. Skip for CI, parallel clean runs, or unattended scraping. Extension must show green connected. Prefer browser_snapshot; avoid browser_evaluate on strict-CSP sites (GitHub, Google).
MCP servers1
- command
- npx
- args
- -y real-browser-mcp
Manifests1
{
"$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
"name": "real-browser-mcp",
"version": "1.3.0",
"description": "Connect AI coding agents to your real logged-in Chrome via MCP + extension. Not headless. Not a cloud agentic browser.",
"author": {
"name": "Ofer Shapira",
"url": "https://github.com/ofershap"
},
"homepage": "https://github.com/ofershap/real-browser-mcp",
"repository": "https://github.com/ofershap/real-browser-mcp",
"license": "MIT",
"keywords": [
"agent-plugins",
"mcp",
"agentic-browser",
"chrome",
"chrome-extension",
"real-browser",
"sso",
"logged-in-browser"
]
}