ultimate_mcp_server vs Audrey
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | Audrey by Evilander | |
|---|---|---|
| Stars | ★ 149 | ★ 23 |
| 30d uses | — | — |
| Score | 85 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | Python | JavaScript |
| 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.
Audrey · Summary
Persistent memory engine for AI agents with MCP integration and REST API.
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
Audrey · Use cases
- Preventing AI agents from repeating previous mistakes by storing and recalling failures
- Providing persistent context across sessions for AI development tools
- Acting as a memory layer for custom AI agents with preflight action checking
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_serverAudrey · Install
# Install via npm
npm install -g audrey
# Basic setup
npx audrey doctor
# Install for Claude Code
npx audrey install --host claude-code
# Verify installation
claude mcp listFor Claude Desktop, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"audrey": {
"command": "npx",
"args": ["audrey", "mcp-config", "generic"]
}
}
}