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 | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-agentFor 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