MCP Catalogs
Home

ultimate_mcp_server vs muse-brain

Side-by-side comparison to help you pick between these two MCP servers.

ultimate_mcp_server
by Dicklesworthstone
muse-brain
by falcoschaefer99-eng
Stars★ 149★ 15
30d uses
Score8542
Official
Categories
AI / LLM ToolsBrowser AutomationFile System
AI / LLM ToolsKnowledge GraphProductivity
LanguagePythonTypeScript
Last commit2 mo ago1 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.

muse-brain · Summary

Relational memory substrate for AI agents with 33 MCP tools, identity continuity, and self-hosted persistence.

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

muse-brain · Use cases

  • Personal AI assistant with memory continuity across sessions
  • Creative collaboration between specialized AI agents
  • Autonomous task management with identity persistence

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server

muse-brain · Install

Quick Start

**Prerequisites (cloud deploy):** Node.js 18+, Cloudflare account, Neon Postgres database **SQLite local/self-host mode:** Node.js 22+

# Clone and install
git clone https://github.com/falcoschaefer99-eng/muse-brain.git
cd muse-brain/muse-brain
npm install

# Configure your worker
cp wrangler.jsonc.example wrangler.jsonc
# Edit: set your worker name and Hyperdrive ID

# Set secrets
npx wrangler secret put API_KEY       # a long random string
npx wrangler secret put DATABASE_URL  # your Neon connection string

# Deploy
npm run deploy

**Claude Desktop Configuration:** Add to claude_desktop_config.json:

{
  "mcpServers": {
    "muse-brain": {
      "command": "npx",
      "args": ["muse-brain"],
      "env": {
        "DATABASE_URL": "your-database-url",
        "API_KEY": "your-api-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.