MCP-Dandan vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
MCP-Dandan by 82ch | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 63 | ★ 149 |
| 30d uses | — | — |
| Score | 45 | 85 |
| Official | — | — |
| Categories | SecurityAI / LLM ToolsMonitoring | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | 5 mo ago | 2 mo ago |
MCP-Dandan · Summary
MCP-Dandan is a security monitoring framework that intercepts and analyzes MCP communications in real-time to detect malicious behavior.
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-Dandan · Use cases
- Security monitoring for AI applications using MCP protocol
- Detection of malicious tool calls and data exfiltration attempts
- Real-time protection against command injection in agentic systems
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-Dandan · Install
Installation
# Clone the repository
git clone https://github.com/82ch/MCP-Dandan.git
cd MCP-Dandan
# Install all dependencies (Python + Node.js)
npm run install-allRunning the Application
# Start both server and desktop UI
npm run devThe server will start on http://127.0.0.1:8282 and the Electron desktop app will launch automatically.
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-dandan": {
"command": "python",
"args": ["path/to/mcp-dandan/server.py"]
}
}
}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_server