everything vs In-Memoria
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | In-Memoria by pi22by7 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 168 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Rust |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
In-Memoria · Summary
MCP server that learns code patterns and provides persistent memory for AI assistants.
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
In-Memoria · Use cases
- Persistent memory for AI coding assistants across sessions
- Intelligent code analysis and pattern learning
- Smart file routing for feature implementation
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-everythingIn-Memoria · Install
Installation
# Install globally
npm install -g in-memoria
# Or use directly with npx
npx in-memoria --helpClaude Desktop Integration
Add to your config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"in-memoria": {
"command": "npx",
"args": ["in-memoria", "server"]
}
}
}