everything vs codeprism
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | codeprism by rustic-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 27 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Rust |
| Last commit | this month | 3 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
codeprism · Summary
100% AI-generated MCP server providing code intelligence through graph-based analysis of codebases.
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
codeprism · Use cases
- AI-assisted code analysis and refactoring
- Repository exploration and documentation generation
- Code quality and security vulnerability detection
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-everythingcodeprism · Install
# Clone and build
git clone https://github.com/rustic-ai/codeprism
cd codeprism
cargo build --release
# Verify installation
./target/release/codeprism --helpFor Claude Desktop integration:
// ~/.config/claude-desktop/claude_desktop_config.json
{
"mcpServers": {
"codeprism": {
"command": "/path/to/codeprism/target/release/codeprism",
"args": ["--mcp"],
"env": {
"CODEPRISM_PROFILE": "development",
"RUST_LOG": "info"
}
}
}
}