- Explore MCP Servers
- mcp-chrome
Mcp Chrome
Overview
What is Mcp Chrome
Chrome MCP Server is a Chrome extension-based Model Context Protocol (MCP) server that enables AI assistants like Claude to automate browser tasks, perform content analysis, and conduct semantic searches using the userβs existing Chrome browser.
Use cases
Use cases include automating repetitive web tasks, conducting complex data scraping, performing intelligent content discovery, managing bookmarks and browsing history, and enhancing productivity through AI-driven browser automation.
How to use
To use Chrome MCP Server, install the Chrome extension, configure it according to your preferences, and connect it to your preferred AI assistant or chatbot. Once set up, you can leverage AI to control your browser for various tasks.
Key features
Key features include chatbot/model agnosticism, seamless integration with the original browser environment, full local operation for privacy, streamable HTTP connections, cross-tab context support, semantic search capabilities, smart content analysis, and access to over 20 tools for enhanced browser functionality.
Where to use
Chrome MCP Server can be used in fields such as web development, digital marketing, data analysis, and any area requiring automated browser interactions and intelligent content management.
Content
Chrome MCP Server π
π 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 | δΈζ
π― 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.
β¨ 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 Dimension | Playwright-based MCP Server | Chrome 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 Speed | 50-200ms inter-process communication | β Faster |
π Quick Start
Prerequisites
- Node.js 18+ and pnpm
- Chrome/Chromium browser
Installation Steps
- Download the latest Chrome extension from GitHub
Download link: https://github.com/hangwin/mcp-chrome/releases
- Install mcp-chrome-bridge globally
npm
npm install -g mcp-chrome-bridge
pnpm
pnpm install -g mcp-chrome-bridge
- 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
- Open Chrome and go to
Usage with Claude Desktop
Add the following configuration to Claude Desktopβs MCP configuration:
{
"mcpServers": {
"streamable-mcp-server": {
"type": "streamable-http",
"url": "http://127.0.0.1:12306/mcp"
}
}
}
π οΈ Available Tools
Complete tool list: Complete Tool List
π Browser Management (4 tools)
get_windows_and_tabs
- List all browser windows and tabschrome_navigate
- Navigate to URLs and control viewportchrome_close_tabs
- Close specific tabs or windowschrome_go_back_or_forward
- Browser navigation control
πΈ Screenshots & Visual (1 tool)
chrome_screenshot
- Advanced screenshot capture with element targeting, full-page support, and custom dimensions
π Network Monitoring (4 tools)
chrome_network_capture_start/stop
- webRequest API network capturechrome_network_debugger_start/stop
- Debugger API with response bodieschrome_network_request
- Send custom HTTP requests
π Content Analysis (3 tools)
search_tabs_content
- AI-powered semantic search across browser tabschrome_get_web_content
- Extract HTML/text content from pageschrome_get_interactive_elements
- Find clickable elements
π― Interaction (3 tools)
chrome_click_element
- Click elements using CSS selectorschrome_fill_or_select
- Fill forms and select optionschrome_keyboard
- Simulate keyboard input and shortcuts
π Data Management (5 tools)
chrome_history
- Search browser history with time filterschrome_bookmark_search
- Find bookmarks by keywordschrome_bookmark_add
- Add new bookmarks with folder supportchrome_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://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://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://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://github.com/user-attachments/assets/063f44ae-1754-46b6-b141-5988c86e4d96
AI helps analyze your browsing history
query: Analyze my browsing history from the past month
https://github.com/user-attachments/assets/e7a35118-e50e-4b1c-a790-0878aa2505ab
Web page conversation
query: Translate and summarize the current web page
https://github.com/user-attachments/assets/08aa86aa-7706-4df2-b400-576e2c7fcc7f
AI automatically takes screenshots for you (web page screenshots)
query: Take a screenshot of Hugging Faceβs homepage
https://github.com/user-attachments/assets/b081e41b-6309-40d6-885b-0da01691b12e
AI automatically takes screenshots for you (element screenshots)
query: Capture the icon from Hugging Faceβs homepage
https://github.com/user-attachments/assets/25657076-b84b-4459-a72f-90f896f06364
AI helps manage bookmarks
query: Add the current page to bookmarks and put it in an appropriate folder
https://github.com/user-attachments/assets/73c1ea26-65fb-4b5e-b537-e32fa9bcfa52
Automatically close web pages
query: Close all shadcn-related web pages
https://github.com/user-attachments/assets/ff160f48-58e0-4c76-a6b0-c4e1f91370c8
π€ 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
- Architecture Design - Detailed technical architecture documentation
- TOOLS API - Complete tool API documentation
- Troubleshooting - Common issue solutions