everything vs ckb
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ckb by nyxCore-Systems | |
|---|---|---|
| Stars | ★ 85,748 | ★ 95 |
| 30d uses | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsKnowledge Graph |
| Language | TypeScript | Go |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ckb · Summary
CKB is a comprehensive code intelligence platform providing MCP server with tools for code analysis, impact assessment, and architecture mapping.
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
ckb · Use cases
- AI-assisted code review with precise impact analysis and risk scoring
- Architecture understanding and documentation through semantic queries
- Dead code detection and tech debt identification in large codebases
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-everythingckb · Install
Installation
Option 1: npm (Recommended)
npm install -g @tastehub/ckbOption 2: Homebrew (macOS/Linux)
brew tap SimplyLiz/ckb
brew install ckbOption 3: Build from Source
git clone https://github.com/SimplyLiz/CodeMCP.git
cd CodeMCP
go build -o ckb ./cmd/ckbSetup for Claude Desktop
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"ckb": {
"command": "npx",
"args": ["@tastehub/ckb", "mcp"]
}
}
}