MCP Catalogs
Home

altk-evolve vs ultimate_mcp_server

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

altk-evolve
by AgentToolkit
ultimate_mcp_server
by Dicklesworthstone
Stars★ 84★ 149
30d uses
Score4685
Official
Categories
AI / LLM ToolsDeveloper ToolsKnowledge Graph
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last committhis month2 mo ago

altk-evolve · Summary

Evolve provides AI agents with memory and learning capabilities through MCP server integration.

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.

altk-evolve · Use cases

  • Enhance coding assistants with learning capabilities from past interactions
  • Create knowledge-sharing systems for AI agents across teams
  • Improve reliability of AI agents on complex multi-step tasks

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

altk-evolve · Install

Installation

Prerequisites:

  • Python 3.12 or higher
  • uv (recommended) or pip

From Source:

git clone https://github.com/agenttoolkit/altk-evolve.git
cd altk-evolve
uv venv --python=3.12 && source .venv/bin/activate
uv sync
# Build the UI
cd frontend/ui
npm ci && npm run build
cd ../..

From PyPI:

pip install altk-evolve

Configuration

For direct OpenAI usage:

export OPENAI_API_KEY=sk-...

Running Services

Start the Web UI and MCP server:

uv run evolve-mcp

The Web UI can be accessed from: http://127.0.0.1:8000/ui/

Claude Desktop Integration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "evolve": {
      "command": "uv",
      "args": ["run", "evolve-mcp"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.