MCP Catalogs
Home

memory vs Uni-CLI

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

memory
by modelcontextprotocol
Uni-CLI
by olo-dot-io
Stars★ 85,748★ 82
30d uses
Score7746
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
Developer ToolsProductivityCommunication
LanguageTypeScriptTypeScript
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

Uni-CLI · Summary

Universal CLI substrate providing 235+ websites, desktop apps, and MCP servers as searchable commands for AI agents.

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

Uni-CLI · Use cases

  • Search and execute commands across 235+ websites, desktop apps, and external CLIs
  • Serve MCP tools to AI agents via `npx @zenalexa/unicli mcp serve`
  • Repair broken adapters using structured error information and the repair command

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

Uni-CLI · Install

# Install globally
npm install -g @zenalexa/unicli

# Serve MCP tools
npx @zenalexa/unicli mcp serve

# Or with transport options
npx @zenalexa/unicli mcp serve --transport streamable --port 19826

# For Claude Desktop
# Add to claude_desktop_config.json:
{
  "mcpServers": {
    "unicli": {
      "command": "npx",
      "args": ["@zenalexa/unicli", "mcp", "serve"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.