Ctxo vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Ctxo by alperhankendi | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 52 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | HTML | TypeScript |
| Last commit | this month | this month |
Ctxo · Summary
Ctxo is an MCP server that provides code intelligence for AI agents, delivering dependency graphs, git intent, and blast radius analysis in a single call.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Ctxo · Use cases
- AI coding agents understanding code structure and dependencies before making changes
- Code analysis with blast radius identification before refactoring
- Git-integrated code review with impact assessment
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
Ctxo · Install
npm install -g @ctxo/cli # one-time global install
cxo init
ctxo indexFor Claude Desktop, add to your config.json:
{
"mcpServers": {
"ctxo": {
"command": "npx",
"args": ["-y", "@ctxo/cli", "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