MCP Catalogs
Home

Ori-Mnemos vs everything

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

Ori-Mnemos
by aayoawoyemi
everything
by modelcontextprotocol
Stars★ 301★ 85,748
30d uses
Score5277
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

Ori-Mnemos · Summary

Local-first persistent memory system for AI agents with recursive memory harness and MCP integration.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Ori-Mnemos · Use cases

  • Persistent memory for AI agents across sessions and clients
  • Knowledge management with wiki-link graph structure
  • Retrieval-augmented generation for complex reasoning tasks

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Ori-Mnemos · Install

npm install -g ori-memory
ori init my-agent
cd my-agent

For MCP integration:

{
  "mcpServers": {
    "ori": {
      "command": "ori",
      "args": ["serve", "--mcp", "--vault", "/path/to/brain"],
      "env": { "ORI_VAULT": "/path/to/brain" }
    }
  }
}

everything · Install

NPX (recommended)

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

On Windows, use cmd /c:

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

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.