ctxvault vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ctxvault by Filippo-Venturini | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 56 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
ctxvault · Summary
CtxVault provides typed memory infrastructure for AI agents with semantic/procedural vault isolation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ctxvault · Use cases
- Persistent memory for research assistants across sessions
- Multi-agent systems with isolated knowledge bases
- Personal knowledge management with AI agents
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
ctxvault · Install
Installation
**Requirements:** Python 3.10+
**From PyPI:**
pip install ctxvault**From source:**
git clone https://github.com/Filippo-Venturini/ctxvault
cd ctxvault
uv sync # creates .venv and installs all dependencies
uv run ctxvault # run the CLI**MCP Configuration:** Add to your Claude Desktop config:
{
"mcpServers": {
"ctxvault": {
"command": "ctxvault-mcp"
}
}
}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