Chrome MCP logo

Chrome MCP

CommunityPopular
hangwin

Chrome MCP Server is a Chrome extension-based Model Context Protocol (MCP) server that exposes your Chrome browser functionality to AI assistants like Claude, enabling complex browser automation, content analysis, and semantic search.

Publisherhangwin
Repositorymcp-chrome
LanguageTypeScript
Forks
1K
Stars
11.6K
Available tools
0
Transport typestdio
Categories
LicenseMIT
Links
  • Connect tools to AI workflows

    Chrome MCP exposes MCP capabilities that can be used by compatible AI clients and agents.

  • 0 available tools

    Browse the callable actions below, including names and descriptions when provided by the server.

  • Ready-to-copy setup

    Use the installation snippets to configure this server in your preferred MCP client.

  • Open source signals

    11.6K stars and 1K forks from the linked repository.

Chrome MCP Server πŸš€

Stars License: MIT TypeScript Chrome Extension Release

🌟 Turn your Chrome browser into your intelligent assistant - Let AI take control of your browser, transforming it into a powerful AI-controlled automation tool.

πŸ“– Documentation: English | δΈ­ζ–‡

The project is still in its early stages and is under intensive development. More features, stability improvements, and other enhancements will follow.


🎯 What is Chrome MCP Server?

Chrome MCP Server is a Chrome extension-based Model Context Protocol (MCP) server that exposes your Chrome browser functionality to AI assistants like Claude, enabling complex browser automation, content analysis, and semantic search. Unlike traditional browser automation tools (like Playwright), Chrome MCP Server directly uses your daily Chrome browser, leveraging existing user habits, configurations, and login states, allowing various large models or chatbots to take control of your browser and truly become your everyday assistant.

✨ New Features(2025/12/30)

  • A New Visual Editor for Claude Code & Codex, for more detail here: VisualEditor

✨ Core Features

  • 😁 Chatbot/Model Agnostic: Let any LLM or chatbot client or agent you prefer automate your browser
  • ⭐️ Use Your Original Browser: Seamlessly integrate with your existing browser environment (your configurations, login states, etc.)
  • πŸ’» Fully Local: Pure local MCP server ensuring user privacy
  • πŸš„ Streamable HTTP: Streamable HTTP connection method
  • 🏎 Cross-Tab: Cross-tab context
  • 🧠 Semantic Search: Built-in vector database for intelligent browser tab content discovery
  • πŸ” Smart Content Analysis: AI-powered text extraction and similarity matching
  • 🌐 20+ Tools: Support for screenshots, network monitoring, interactive operations, bookmark management, browsing history, and 20+ other tools
  • πŸš€ SIMD-Accelerated AI: Custom WebAssembly SIMD optimization for 4-8x faster vector operations

πŸ†š Comparison with Similar Projects

Comparison DimensionPlaywright-based MCP ServerChrome Extension-based MCP Server
Resource Usage❌ Requires launching independent browser process, installing Playwright dependencies, downloading browser binaries, etc.βœ… No need to launch independent browser process, directly utilizes user's already open Chrome browser
User Session Reuse❌ Requires re-loginβœ… Automatically uses existing login state
Browser Environment❌ Clean environment lacks user settingsβœ… Fully preserves user environment
API Access⚠️ Limited to Playwright APIβœ… Full access to Chrome native APIs
Startup Speed❌ Requires launching browser processβœ… Only needs to activate extension
Response Speed50-200ms inter-process communicationβœ… Faster

πŸš€ Quick Start

Prerequisites

  • Node.js >= 20.0.0 and pnpm/npm
  • Chrome/Chromium browser

Installation Steps

  1. Download the latest Chrome extension from GitHub

Download link: https://github.com/hangwin/mcp-chrome/releases

  1. Install mcp-chrome-bridge globally

npm

bash
npm install -g mcp-chrome-bridge

pnpm

bash
# Method 1: Enable scripts globally (recommended)
pnpm config set enable-pre-post-scripts true
pnpm install -g mcp-chrome-bridge

# Method 2: Manual registration (if postinstall doesn't run)
pnpm install -g mcp-chrome-bridge
mcp-chrome-bridge register

Note: pnpm v7+ disables postinstall scripts by default for security. The enable-pre-post-scripts setting controls whether pre/post install scripts run. If automatic registration fails, use the manual registration command above.

  1. Load Chrome Extension
    • Open Chrome and go to chrome://extensions/
    • Enable "Developer mode"
    • Click "Load unpacked" and select your/dowloaded/extension/folder
    • Click the extension icon to open the plugin, then click connect to see the MCP configuration

Usage with MCP Protocol Clients

Using Streamable HTTP Connection (πŸ‘πŸ» Recommended)

Add the following configuration to your MCP client configuration (using CherryStudio as an example):

Streamable HTTP connection method is recommended

json
{
  "mcpServers": {
    "chrome-mcp-server": {
      "type": "streamableHttp",
      "url": "http://127.0.0.1:12306/mcp"
    }
  }
}

Using STDIO Connection (Alternative)

If your client only supports stdio connection method, please use the following approach:

  1. First, check the installation location of the npm package you just installed
sh
# npm check method
npm list -g mcp-chrome-bridge
# pnpm check method
pnpm list -g mcp-chrome-bridge

Assuming the command above outputs the path: /Users/xxx/Library/pnpm/global/5 Then your final path would be: /Users/xxx/Library/pnpm/global/5/node_modules/mcp-chrome-bridge/dist/mcp/mcp-server-stdio.js

  1. Replace the configuration below with the final path you just obtained
json
{
  "mcpServers": {
    "chrome-mcp-stdio": {
      "command": "npx",
      "args": [
        "node",
        "/Users/xxx/Library/pnpm/global/5/node_modules/mcp-chrome-bridge/dist/mcp/mcp-server-stdio.js"
      ]
    }
  }
}

eg:config in augment:

πŸ› οΈ Available Tools

Complete tool list: Complete Tool List

  • get_windows_and_tabs - List all browser windows and tabs
  • chrome_navigate - Navigate to URLs and control viewport
  • chrome_switch_tab - Switch the current active tab
  • chrome_close_tabs - Close specific tabs or windows
  • chrome_go_back_or_forward - Browser navigation control
  • chrome_inject_script - Inject content scripts into web pages
  • chrome_send_command_to_inject_script - Send commands to injected content scripts
  • chrome_screenshot - Advanced screenshot capture with element targeting, full-page support, and custom dimensions
  • chrome_network_capture_start/stop - webRequest API network capture
  • chrome_network_debugger_start/stop - Debugger API with response bodies
  • chrome_network_request - Send custom HTTP requests
  • search_tabs_content - AI-powered semantic search across browser tabs
  • chrome_get_web_content - Extract HTML/text content from pages
  • chrome_get_interactive_elements - Find clickable elements
  • chrome_console - Capture and retrieve console output from browser tabs
  • chrome_click_element - Click elements using CSS selectors
  • chrome_fill_or_select - Fill forms and select options
  • chrome_keyboard - Simulate keyboard input and shortcuts
  • chrome_history - Search browser history with time filters
  • chrome_bookmark_search - Find bookmarks by keywords
  • chrome_bookmark_add - Add new bookmarks with folder support
  • chrome_bookmark_delete - Delete bookmarks

πŸ§ͺ Usage Examples

AI helps you summarize webpage content and automatically control Excalidraw for drawing

prompt: excalidraw-prompt Instruction: Help me summarize the current page content, then draw a diagram to aid my understanding. https://www.youtube.com/watch?v=3fBPdUBWVz0

https://github.com/user-attachments/assets/fd17209b-303d-48db-9e5e-3717141df183

After analyzing the content of the image, the LLM automatically controls Excalidraw to replicate the image

prompt: excalidraw-prompt|content-analize Instruction: First, analyze the content of the image, and then replicate the image by combining the analysis with the content of the image. https://www.youtube.com/watch?v=tEPdHZBzbZk

https://github.com/user-attachments/assets/60d12b1a-9b74-40f4-994c-95e8fa1fc8d3

AI automatically injects scripts and modifies webpage styles

prompt: modify-web-prompt Instruction: Help me modify the current page's style and remove advertisements. https://youtu.be/twI6apRKHsk

https://github.com/user-attachments/assets/69cb561c-2e1e-4665-9411-4a3185f9643e

AI automatically captures network requests for you

query: I want to know what the search API for Xiaohongshu is and what the response structure looks like

https://youtu.be/1hHKr7XKqnQ

https://github.com/user-attachments/assets/dc7e5cab-b9af-4b9a-97ce-18e4837318d9

AI helps analyze your browsing history

query: Analyze my browsing history from the past month

https://youtu.be/jf2UZfrR2Vk

https://github.com/user-attachments/assets/31b2e064-88c6-4adb-96d7-50748b826eae

Web page conversation

query: Translate and summarize the current web page https://youtu.be/FlJKS9UQyC8

https://github.com/user-attachments/assets/aa8ef2a1-2310-47e6-897a-769d85489396

AI automatically takes screenshots for you (web page screenshots)

query: Take a screenshot of Hugging Face's homepage https://youtu.be/7ycK6iksWi4

https://github.com/user-attachments/assets/65c6eee2-6366-493d-a3bd-2b27529ff5b3

AI automatically takes screenshots for you (element screenshots)

query: Capture the icon from Hugging Face's homepage https://youtu.be/ev8VivANIrk

https://github.com/user-attachments/assets/d0cf9785-c2fe-4729-a3c5-7f2b8b96fe0c

AI helps manage bookmarks

query: Add the current page to bookmarks and put it in an appropriate folder

https://youtu.be/R_83arKmFTo

https://github.com/user-attachments/assets/15a7d04c-0196-4b40-84c2-bafb5c26dfe0

Automatically close web pages

query: Close all shadcn-related web pages

https://youtu.be/2wzUT6eNVg4

https://github.com/user-attachments/assets/83de4008-bb7e-494d-9b0f-98325cfea592

🀝 Contributing

We welcome contributions! Please see CONTRIBUTING.md for detailed guidelines.

🚧 Future Roadmap

We have exciting plans for the future development of Chrome MCP Server:

  • Authentication
  • Recording and Playback
  • Workflow Automation
  • Enhanced Browser Support (Firefox Extension)

Want to contribute to any of these features? Check out our Contributing Guide and join our development community!

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

πŸ“š More Documentation

Use Chrome MCP MCP with multiple AI models

TypingMind connects MCP tools at the workspace level, so once Chrome MCP is connected, you can use it with different AI models in TypingMind instead of setting it up separately for each model. This MCP runs locally through the TypingMind MCP connector on your device.

Setup guide to use the local connector

Use this when the MCP server needs access to local files, apps, or private resources on your computer.

1

Open the MCP settings

In TypingMind, go to Settings, Advanced Settings, then Model Context Protocol and choose Setup Connector.

  1. Open TypingMind in your browser.
  2. Click the Settings icon.
  3. Go to Advanced Settings.
  4. Open the Model Context Protocol section.
  5. Click Setup Connector and choose This Device.
TypingMind MCP connector setup screen with This Device selected
2

Run the connector command

Choose This Device, copy the command from TypingMind, and run it in Terminal. Keep the process running while you use MCP.

  1. Copy the setup command shown by TypingMind.
  2. Open Terminal on macOS or Windows Terminal on Windows.
  3. Paste and run the command.
  4. Approve the package install if Terminal asks you to proceed.
  5. Keep the Terminal window running while using MCP tools.
3

Add Chrome MCP as a server

When the connector status is Ready, click Edit Servers and paste the MCP server configuration.

  1. Wait until the connector status shows Ready.
  2. Click Edit Servers.
  3. Paste the Chrome MCP MCP server configuration.
  4. Save the server list.
  5. Refresh if you want to confirm the connector is still ready.
TypingMind MCP settings showing active server and Edit Servers button
{
  "mcpServers": {
    "chrome-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "null"
      ]
    }
  }
}
4

Use it across models

Save the server list, open Plugins, enable the Chrome MCP MCP tools, then select any supported AI model in TypingMind and use the tools in chat or assign them to an AI agent.

  1. Open the Plugins page in TypingMind.
  2. Enable the Chrome MCP MCP tools.
  3. Start a chat and choose the AI model you want to use.
  4. Use the MCP tools in chat or assign them to an AI agent.
  5. Switch to another AI model whenever needed without reconnecting MCP.
TypingMind chat using enabled MCP tools with a selected AI model
Can you use Chrome MCP to help me with this task?
Chrome MCP
Sure. I read it.
Here is what I found using Chrome MCP.

Frequently asked questions

What is the Chrome MCP MCP server used for?

Chrome MCP is an MCP server that lets compatible AI clients connect to external tools and context. In TypingMind, you can add this MCP server once and make its tools available in your AI workspace.

Can I use Chrome MCP MCP with multiple AI models in TypingMind?

Yes. TypingMind connects MCP tools at the workspace level, so you can use Chrome MCP with different AI models such as Claude, ChatGPT, Gemini, or other models you have configured in TypingMind without setting up the MCP server separately for each model.

Why use Chrome MCP MCP with TypingMind?

TypingMind is one of the best frontends for LLM chat because it brings multiple AI models, prompts, plugins, AI agents, API keys, and MCP tools into one workspace. With Chrome MCP connected, you can use its MCP tools across your preferred models while keeping your chat workflow organized in TypingMind.

How do I connect Chrome MCP MCP to TypingMind?

Chrome MCP runs through the TypingMind local MCP connector. This is best when the MCP server needs access to local files, desktop apps, command-line tools, or private resources on your computer.

What tools does Chrome MCP MCP provide in TypingMind?

Chrome MCP exposes MCP capabilities that can be enabled from the TypingMind Plugins page and used in chat or assigned to AI agents.

Do I need to share my API keys with TypingMind to use Chrome MCP MCP?

No. TypingMind is local-first and lets you keep your model providers, API keys, prompts, and MCP configuration under your control. If Chrome MCP requires authentication, add the required headers, OAuth settings, or local configuration for that MCP server when you create the connection.

Related MCP Servers

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter πŸ‘‡