Description

Chrome extension-based Model Context Protocol server that exposes Chrome browser functionality to AI assistants.

Installation

npx -y mcp-chrome
npm install mcp-chrome
git clone https://github.com/hangwin/mcp-chrome

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "chrome-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-chrome"
      ]
    }
  }
}