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 | — | — |
| Score | 85 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Browser AutomationWeb ScrapingDeveloper Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 6 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
- 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_serverpuppeteer-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 -dManual Installation
# Prerequisites: Node.js 18+, npm 8+
npm install
npm run build
npm startClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"puppeteer": {
"command": "node",
"args": ["dist/server.js"],
"env": {
"API_KEY": "your-api-key"
}
}
}
}