Skill Detail

Chrome MCP Server Extension-Based Browser Automation for AI Agents

Chrome MCP Server uses a Chrome extension and local bridge to expose your everyday browser to MCP-compatible agents. It is designed for workflows where an agent should reuse real tabs, existing login state, browser history, bookmarks, and native Chrome APIs instead of launching a separate automation browser.

Browser AutomationMCP
Browser Automation MCP Published
⭐ 11.2k GitHub stars
INSTALL WITH ANY AGENT
npx skills add agentskillexchange/skills --skill chrome-mcp-server-extension-based-browser-automation-ai-agents Copy
Works best when you want a reusable capability, not another fragile one-off prompt.
At a glance
Tools required
Node.js >= 20, npm or pnpm, Chrome/Chromium, Chrome extension
Install & setup
npm install -g mcp-chrome-bridge
Author
hangwin
Publisher
Individual Developer
Last updated
Apr 7, 2026
Quick brief

Chrome MCP Server, published from the hangwin/mcp-chrome project, is a browser automation server built around a Chrome extension rather than a separate Playwright-managed browser instance. Its core job-to-be-done is to let an AI assistant operate inside the user’s real Chrome environment, with the tabs, sessions, cookies, bookmarks, and login state already in place. That makes it useful for agents that need to work with authenticated tools, existing browsing context, or cross-tab tasks without rebuilding state from scratch.

How it works

What this skill actually does

The upstream README highlights a broad toolset: browser and tab management, screenshots, network monitoring, content extraction, console capture, form filling, keyboard control, history search, and bookmark operations. It also adds semantic search across tab content through a built-in vector database, which makes the project more than a simple click automation bridge. In practice, that means an agent can search across open tabs, inspect network behavior, read page content, and continue interacting with the same browser session.

Integration requires Node.js and Chrome, plus the project’s bridge package and extension. The documented install path is npm install -g mcp-chrome-bridge, followed by loading the extension and connecting an MCP client over streamable HTTP or stdio. This architecture is a strong fit for Browser Automation skills that prioritize user-session reuse, local control, and wide Chrome-native coverage over isolated headless-browser reproducibility.