chrome-devtools-mcp vs stealth-browser-mcp
Side-by-side comparison to help you pick between these two MCP servers.
chrome-devtools-mcp by ChromeDevTools | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 39,757 | ★ 643 |
| 30d uses | — | — |
| Score | 65 | 54 |
| Official | — | — |
| Categories | Browser AutomationDeveloper ToolsWeb Scraping | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
chrome-devtools-mcp · Summary
Chrome DevTools MCP server lets AI coding agents control and inspect live Chrome browsers through the MCP protocol.
stealth-browser-mcp · Summary
Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.
chrome-devtools-mcp · Use cases
- Automated web testing and validation by AI agents
- Performance analysis and optimization of web applications
- Debugging web applications through AI-powered inspection
stealth-browser-mcp · Use cases
- Automating web scraping on protected websites with antibot measures
- Creating UI clones of websites through AI chat commands
- Intercepting and modifying network traffic in real-time
chrome-devtools-mcp · Install
Installation
Add the following config to your MCP client:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest"]
}
}
}For basic browser tasks in headless mode:
{
"mcpServers": {
"chrome-devtools": {
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--slim", "--headless"]
}
}
}stealth-browser-mcp · Install
# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop configuration:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}