memorix vs everything
Side-by-side comparison to help you pick between these two MCP servers.
memorix by AVIDS2 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 449 | ★ 85,748 |
| 30d uses | — | — |
| Score | 53 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
memorix · Summary
Open-source cross-agent memory layer for coding agents via MCP with local-first storage.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
memorix · Use cases
- Cross-session and cross-IDE project memory for coding workflows
- Git-aware memory tracking and retrieval in development projects
- Multi-agent coordination with task management and inter-agent communication
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
memorix · Install
Install globally with npm:
npm install -g memorixInitialize config:
memorix initFor MCP integration in Claude Desktop, add to config.json:
{
"mcpServers": {
"memorix": {
"command": "memorix",
"args": ["serve"]
}
}
}Run as MCP server: memorix serve
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