ultimate_mcp_server vs py-xiaozhi
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | py-xiaozhi by huangjunsen0406 | |
|---|---|---|
| Stars | ★ 149 | ★ 3,309 |
| 30d uses | — | — |
| Score | 85 | 56 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | Python |
| Last commit | 2 mo ago | this month |
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.
py-xiaozhi · Summary
A Python-based Xiaozhi AI voice assistant with MCP tools integration, supporting GUI/CLI/GPI interfaces and multimodal interactions.
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
py-xiaozhi · Use cases
- Voice-controlled desktop assistant with multimodal capabilities
- Home automation through voice commands and tool integration
- Development platform for custom voice assistant 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_serverpy-xiaozhi · Install
# Clone repository
git clone https://github.com/huangjunsen0406/py-xiaozhi.git
cd py-xiaozhi
# Install dependencies (CLI/GPIO mode)
uv sync
# or: pip install -e .
# Install with GUI support
uv sync --extra gui
# or: pip install -e '.[gui]'
# Run the application
python main.py # GUI mode (default)
python main.py --mode cli # CLI mode
python main.py --protocol mqtt # MQTT protocolFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"xiaozhi": {
"command": "python",
"args": ["/path/to/py-xiaozhi/main.py"]
}
}
}