MCP Chrome Server MCP Server

A Chrome server based on MCP (Model-Controller-Prompt) for browser automation.

Local serverstdioPython

What is the MCP Chrome Server MCP server?

Mcp chrome server mcp server lets Claude, Cursor and other MCP clients work with MCP Chrome Server directly. A Chrome server based on MCP (Model-Controller-Prompt) for browser automation.

What MCP Chrome Server does

A Chrome server based on MCP (Model-Controller-Prompt) for browser automation.

Tools it exposes

Once connected, the assistant can call these 4 tools directly:

  • Windows — %LOCALAPPDATA%\Google\Chrome\User Data
  • macOS — ~/Library/Application Support/Google/Chrome
  • Linux — ~/.config/google-chrome
  • Prerequisites — The Prerequisites tool exposed by this server

Installing the mcp chrome server mcp server

The server is distributed via npm as @smithery/cli, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

The server reads one environment variable: CHROME_PROFILE_PATH. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.12 - Google Chrome browser installed - uv (Python package installer) or Docker

Where it fits

Browser automation servers are the ones people reach for when a site has no API — the assistant drives a real page instead of guessing at endpoints. MCP Chrome Server sits in that group, and the shape of its toolset — Windows, macOS, Linux among others — tells you what it is really for. Worth comparing against the other browser automation servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by dlwjdtn535, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp chrome server mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Windows%LOCALAPPDATA%\Google\Chrome\User Data
macOS~/Library/Application Support/Google/Chrome
Linux~/.config/google-chrome
PrerequisitesThe Prerequisites tool exposed by this server.

How to install the MCP Chrome Server MCP server

**macOS Setup:**
```json
{
  "mcpServers": {
    "mcp-chrome-server": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "/usr/local/bin/mcp-chrome-server/src",
        "mcp-chrome-server"
      ],
      "env": {
        "CHROME_PROFILE_PATH": "$HOME/Library/Application Support/Google/Chrome"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.12 - Google Chrome browser installed - uv (Python package installer) or Docker
VariableDescriptionRequired
CHROME_PROFILE_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use MCP Chrome Server to Windows.
  • Use MCP Chrome Server to macOS.
  • Use MCP Chrome Server to Linux.

Frequently asked questions

It connects MCP Chrome Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 4 tools (Windows, macOS, Linux, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Chrome Server directly.