ultimate_mcp_server vs MCP2OSC
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | MCP2OSC by yyf | |
|---|---|---|
| Stars | ★ 149 | ★ 3 |
| 30d uses | — | — |
| Score | 85 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | MediaDeveloper ToolsAI / LLM Tools |
| Language | Python | JavaScript |
| Last commit | 2 mo ago | 1 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.
MCP2OSC · Summary
MCP2OSC enables parametric control of OSC devices using natural language through Claude.
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
MCP2OSC · Use cases
- Controlling music production software like MaxMSP and SuperCollider through natural language
- Generating and debugging OSC messages for multimedia installations
- Visualizing and analyzing OSC data streams in real-time
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_serverMCP2OSC · Install
Installation
- **Clone the repository**
``bash git clone https://github.com/yyf/MCP2OSC.git cd MCP2OSC ``
- **Install dependencies**
``bash npm install ``
- **Configure your LLM application**
Add to your Claude Desktop MCP configuration file: ``json { "mcpServers": { "mcp2osc": { "command": "node", "args": ["/path/to/MCP2OSC/mcp-server.js"], "cwd": "/path/to/MCP2OSC", "env": { "OSC_HOST": "127.0.0.1", "OSC_SEND_PORT": "9500", "OSC_RECEIVE_PORT": "9501", "WEBSOCKET_PORT": "8765", "WEBSOCKET_OSC_PORT": "9500", "MAX_OSC_MESSAGES": "2000", "OSC_LOG_ROTATION": "true" } } } } ``
- **Start the LLM application and test**
- Restart Claude after making configuration changes - Try example prompts like "What MCP tools are available" or "Ping MaxMSP at port 9500"