ultimate_mcp_server vs crash-mcp
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | crash-mcp by nikkoxgonzales | |
|---|---|---|
| Stars | ★ 149 | ★ 69 |
| 30d uses | — | — |
| Score | 85 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | 5 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.
crash-mcp · Summary
CRASH is an MCP server for structured reasoning with step validation, branching, and confidence tracking.
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
crash-mcp · Use cases
- Complex multi-step problem solving in software development
- System design with multiple architectural considerations
- Debugging requiring systematic investigation
- Code analysis and optimization
- Tasks requiring tracking of confidence levels
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_servercrash-mcp · Install
npm install crash-mcpOr use directly with npx:
npx crash-mcpQuick Setup
Most MCP clients use this JSON configuration:
{
"mcpServers": {
"crash": {
"command": "npx",
"args": ["-y", "crash-mcp"]
}
}
}Configuration by Client
| Client | Setup Method | |--------|-------------| | **Claude Code** | claude mcp add crash -- npx -y crash-mcp | | **Cursor** | Add to ~/.cursor/mcp.json | | **VS Code** | Add to settings JSON under mcp.servers | | **Claude Desktop** | Add to claude_desktop_config.json | | **Windsurf** | Add to MCP config file | | **JetBrains** | Settings > Tools > AI Assistant > MCP | | **Others** | Use standard MCP JSON config above |