ultimate_mcp_server vs matlab-mcp-tools
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | matlab-mcp-tools by neuromechanist | |
|---|---|---|
| Stars | ★ 149 | ★ 18 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | Developer ToolsAI / LLM ToolsProductivity |
| 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.
matlab-mcp-tools · Summary
MCP server for MATLAB development with script execution, workspace management and figure analysis tools.
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
matlab-mcp-tools · Use cases
- Interactive MATLAB development using LLM assistants with context preservation between script executions
- Analysis of MATLAB-generated figures and plots by extracting metadata and raw data
- Remote MATLAB execution without direct interface access through MCP-compatible clients
- Code quality checking with integrated MATLAB linting
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_servermatlab-mcp-tools · Install
Installation
Quick Start (Recommended)
./install-matlab-mcp.shManual Installation
- Clone the repository:
git clone [repository-url]
cd matlab-mcp-tools- Set MATLAB path if needed:
export MATLAB_PATH=/path/to/matlab/installation- Install dependencies:
./scripts/setup-matlab-mcp.shConfiguration for Claude Desktop
Add to .mcp.json:
{
"mcpServers": {
"matlab": {
"command": "/path/to/matlab-mcp-tools/.venv/bin/matlab-mcp-server",
"env": {
"MATLAB_PATH": "/Applications/MATLAB_R2024b.app"
}
}
}
}