chrome-devtools-mcp vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
chrome-devtools-mcp by benjaminr | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 297 | ★ 149 |
| 30d uses | — | — |
| Score | 48 | 85 |
| Official | — | — |
| Categories | Developer ToolsBrowser AutomationMonitoring | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 7 mo ago | 2 mo ago |
chrome-devtools-mcp · Summary
Chrome DevTools MCP server enables web debugging through Claude by connecting to Chrome's debugging capabilities.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
chrome-devtools-mcp · Use cases
- Debug API calls in web applications by monitoring network requests and responses
- Inspect JavaScript objects and console errors to diagnose frontend issues
- Analyze performance metrics and identify loading bottlenecks in web applications
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
chrome-devtools-mcp · Install
Installation Options
Claude Desktop Extension (Easiest)
- Download the latest
.dxtfile from [Releases](https://github.com/benjaminr/chrome-devtools-mcp/releases) - Open Claude Desktop
- Go to Extensions and install the downloaded
.dxtfile
Manual Claude Desktop Setup
Add to your Claude Desktop config file:
{
"mcpServers": {
"chrome-devtools": {
"command": "python",
"args": ["/absolute/path/to/chrome-devtools-mcp/server.py"],
"env": {
"CHROME_DEBUG_PORT": "9222"
}
}
}
}MCP CLI
mcp install server.py -n "Chrome DevTools MCP" --with-editable .Claude Code
uv sync
SERVER_PATH="$(pwd)/server.py"
PYTHON_PATH="$(pwd)/.venv/bin/python"
claude mcp add chrome-devtools "$PYTHON_PATH" "$SERVER_PATH" -e CHROME_DEBUG_PORT=9222ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server