everything vs yantrikdb-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | yantrikdb-server by yantrikos | |
|---|---|---|
| Stars | ★ 85,748 | ★ 143 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsKnowledge GraphDatabase |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
yantrikdb-server · Summary
Cognitive memory database for AI agents that consolidates duplicates, detects contradictions, and fades stale memories via temporal decay.
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
yantrikdb-server · Use cases
- Long-term memory management for AI agents to avoid context window overflow
- Conflict detection and resolution in multi-conversation AI systems
- Personalized AI assistants that learn user preferences over time
- Knowledge consolidation for enterprise document management systems
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-everythingyantrikdb-server · Install
Quick Start with MCP
pip install yantrikdb-mcpAdd to your MCP client config (typically ~/.claude.json or .mcp.json):
{
"mcpServers": {
"yantrikdb": {
"command": "yantrikdb-mcp"
}
}
}For shared memory across machines:
{
"mcpServers": {
"yantrikdb": {
"command": "yantrikdb-mcp",
"env": {
"YANTRIKDB_SERVER_URL": "http://node1:7438,http://node2:7438",
"YANTRIKDB_TOKEN": "ydb_your_database_token"
}
}
}
}As a Network Server
docker run -p 7438:7438 ghcr.io/yantrikos/yantrikdb:latest