MCP Catalogs
Home

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
Score4885
Official
Categories
Developer ToolsBrowser AutomationMonitoring
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit7 mo ago2 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)

  1. Download the latest .dxt file from [Releases](https://github.com/benjaminr/chrome-devtools-mcp/releases)
  2. Open Claude Desktop
  3. Go to Extensions and install the downloaded .dxt file

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=9222

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.