everything vs vestige
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | vestige by samvallad33 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 531 |
| 30d uses | — | — |
| Score | 77 | 53 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
vestige · Summary
Cognitive memory for AI agents with FSRS-6 spaced repetition, 29 brain modules, and a 3D visualization dashboard.
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
vestige · Use cases
- Giving AI assistants persistent memory across sessions
- Building sophisticated cognitive architectures for autonomous agents
- Creating memory-augmented workflows in IDEs and development tools
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-everythingvestige · Install
Installation
Quick Start
- Download the binary for your platform from [GitHub releases](https://github.com/samvallad33/vestige/releases/latest)
- Make it executable:
chmod +x vestige - Run it:
./vestige
Integration with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"vestige": {
"command": "path/to/your/vestige",
"args": []
}
}
}Package Managers
- Cargo:
cargo install vestige - Homebrew:
brew install vestige