ultimate_mcp_server vs webclaw
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | webclaw by kuroko1t | |
|---|---|---|
| Stars | ★ 149 | ★ 18 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Browser AutomationDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 2 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.
webclaw · Summary
WebClaw is a Chrome extension-based MCP server that allows AI assistants to control real Chrome browser sessions through a WebSocket connection.
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
webclaw · Use cases
- Automating web testing and QA workflows using AI assistants
- Cross-platform web scraping with existing authenticated sessions
- AI-powered UI automation and task completion in web applications
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_serverwebclaw · Install
Installation
1. Configure your MCP client
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}Other clients
# Claude Code
claude mcp add webclaw -- npx -y webclaw-mcp
# Cursor / VS Code / Windsurf
# Add to respective MCP config files:
{
"mcpServers": {
"webclaw": {
"command": "npx",
"args": ["-y", "webclaw-mcp"]
}
}
}2. Load Chrome Extension
- Download the latest [webclaw-extension.zip](https://github.com/kuroko1t/webclaw/releases/latest)
- Open
chrome://extensions/→ enable **Developer mode** - Click **Load unpacked** → select the
dist/folder