mcp-server-codegraph vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-codegraph by CartographAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 20 | ★ 85,748 |
| 30d uses | — | — |
| Score | 37 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsKnowledge GraphAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 8 mo ago | this month |
mcp-server-codegraph · Summary
MCP server that transforms codebases into interactive knowledge graphs with entity tracking and relationship mapping.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-codegraph · Use cases
- Codebase exploration and understanding in large projects
- Dependency analysis for refactoring and modernization
- Documentation generation based on code structure
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
mcp-server-codegraph · Install
Install the server using npm:
npx @cartographai/mcp-server-codegraph /path/to/directoryFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"codegraph": {
"command": "npx",
"args": [
"-y",
"@cartographai/mcp-server-codegraph",
"/path/to/directory"
]
}
}
}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