Corbell vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Corbell by Corbell-AI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 208 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Knowledge GraphDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
Corbell · Summary
MCP server providing architecture graph intelligence, code search, and spec generation tools for backend teams.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Corbell · Use cases
- Discover cross-service dependencies and call paths before implementing features
- Generate architecture specifications that respect established patterns
- Automatically decompose specs into Linear/Jira tasks with full context
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
Corbell · Install
Install Corbell via pip:
pip install corbell
# With LLM support:
pip install "corbell[anthropic]" # Claude
# Or for MCP:
corbell mcp serveFor Claude Desktop integration:
{
"mcpServers": {
"corbell": {
"command": "corbell",
"args": ["mcp", "serve"]
}
}
}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