ContextGraph vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ContextGraph by AllenMaxi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 21 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphAI / LLM ToolsDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
ContextGraph · Summary
MCP server implementing a shared memory bus with permissions, subscriptions, and optional payments for multi-agent teams.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ContextGraph · Use cases
- Coding agents that need to survive context window pressure without losing state
- Multi-agent teams requiring shared memory with permissions and provenance
- Internal agent platforms needing ACLs and explainable memory layers
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
ContextGraph · Install
pip install contextgraphFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"contextgraph": {
"command": "python",
"args": ["-m", "contextgraph.server"],
"env": {}
}
}
}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