ultimate_mcp_server vs mcp-workspace
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-workspace by MarcusJellinghaus | |
|---|---|---|
| Stars | ★ 149 | ★ 47 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | File SystemDeveloper ToolsAI / LLM Tools |
| 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.
mcp-workspace · Summary
Secure MCP server providing file system, Git, and GitHub tools for AI assistants in a sandboxed project directory.
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
mcp-workspace · Use cases
- Enable AI assistants like Claude to read and modify code in your project directly
- Provide secure file system access to LLMs for automated code generation and refactoring
- Allow AI to analyze and debug code by reading multiple files in a project
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_servermcp-workspace · Install
Installation
# Clone the repository
git clone https://github.com/MarcusJellinghaus/mcp-workspace.git
cd mcp_workspace
# Create and activate a virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies using pip with pyproject.toml
pip install -e .Running the Server
mcp-workspace --project-dir /path/to/project [--reference-project NAME=/path/to/reference]... [--log-level LEVEL] [--log-file PATH]Claude Desktop Integration
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"filesystem": {
"command": "mcp-workspace",
"args": [
"--project-dir",
"C:\\path\\to\\your\\specific\\project",
"--reference-project",
"docs=C:\\path\\to\\documentation"
]
}
}
}