drift vs everything
Side-by-side comparison to help you pick between these two MCP servers.
drift by dadbodgeoff | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 781 | ★ 85,748 |
| 30d uses | — | — |
| Score | 51 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
drift · Summary
Codebase intelligence tool that detects patterns and remembers decisions across sessions for AI assistants.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
drift · Use cases
- Enhancing AI assistant understanding of codebase patterns and conventions
- Providing context-aware suggestions during code refactoring
- Maintaining project knowledge across different development sessions
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
drift · Install
Installation
Drift v2 setup instructions can be found in drift v2/README.md or the documentation in drift v2/docs/.
Claude Desktop Configuration
{
"mcpServers": {
"drift": {
"command": "npm",
"args": ["exec", "drift-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