MCP Catalogs
Home

ultimate_mcp_server vs puppeteer-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
puppeteer-mcp-server
by sultannaufal
Stars★ 149★ 19
30d uses
Score8542
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
Browser AutomationWeb ScrapingDeveloper Tools
LanguagePythonTypeScript
Last commit2 mo ago6 mo ago

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.

puppeteer-mcp-server · Summary

Self-hosted Puppeteer MCP server with browser automation tools, supporting multiple transports and API key authentication.

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

puppeteer-mcp-server · Use cases

  • Automated web testing and screenshots of web applications
  • Web scraping and data extraction from dynamic websites
  • Automated form filling and UI interaction testing

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

puppeteer-mcp-server · Install

Installation

Using Docker (Recommended)

# Clone the repository
git clone https://github.com/sultannaufal/puppeteer-mcp-server.git
cd puppeteer-mcp-server

# Create .env file with your API key
echo "API_KEY=your-secure-api-key-here" > .env

# Start with Docker Compose
docker compose --env-file .env up -d

Manual Installation

# Prerequisites: Node.js 18+, npm 8+
npm install
npm run build
npm start

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "puppeteer": {
      "command": "node",
      "args": ["dist/server.js"],
      "env": {
        "API_KEY": "your-api-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.