ultimate_mcp_server vs imagesorcery-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | imagesorcery-mcp by sunriseapps | |
|---|---|---|
| Stars | ★ 149 | ★ 311 |
| 30d uses | — | — |
| Score | 85 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsMediaDeveloper Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 8 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.
imagesorcery-mcp · Summary
ImageSorcery MCP provides powerful locally-run image processing tools for AI assistants.
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
imagesorcery-mcp · Use cases
- Automatically categorize and organize images by content (e.g., find all pet photos in a folder)
- Edit images by adding text, watermarks, or removing backgrounds without external software
- Extract information from images using OCR and object detection for document processing
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_serverimagesorcery-mcp · Install
Installation
- **Install pipx (if not already installed):**
```bash # On macOS with Homebrew: brew install pipx
# On Ubuntu/Debian: sudo apt update && sudo apt install pipx ```
- **Install ImageSorcery MCP with pipx:**
``bash pipx install imagesorcery-mcp ``
- **Run the post-installation script:**
``bash imagesorcery-mcp --post-install ``
- **Configure in Claude Desktop:**
Add to your claude_desktop_config.json: ``json { "mcpServers": { "imagesorcery": { "command": "imagesorcery-mcp", "args": [] } } } ``