ultimate_mcp_server vs comfyui-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | comfyui-mcp-server by joenorton | |
|---|---|---|
| Stars | ★ 149 | ★ 313 |
| 30d uses | — | — |
| Score | 85 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsMediaDeveloper Tools |
| Language | Python | Python |
| Last commit | 2 mo ago | 3 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.
comfyui-mcp-server · Summary
Lightweight Python MCP server for local ComfyUI that enables AI agents to generate and iteratively refine images, audio, and video.
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
comfyui-mcp-server · Use cases
- AI assistants creating website hero images and logos with precise control
- Content generation for social media platforms with iterative refinement
- Game asset development with consistent style variations
- Music generation from lyrics and tags
- Automated media generation for content creators
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_servercomfyui-mcp-server · Install
Quick Installation
1) Clone and install dependencies:
git clone https://github.com/joenorton/comfyui-mcp-server.git
cd comfyui-mcp-server
pip install -r requirements.txt2) Start ComfyUI locally:
cd <ComfyUI_dir>
python main.py --port 81883) Run the MCP server:
python server.py4) Configure your AI client (e.g., Claude Desktop, Cursor) with:
{
"mcpServers": {
"comfyui-mcp-server": {
"type": "streamable-http",
"url": "http://127.0.0.1:9000/mcp"
}
}
}