everything vs segundo-cerebro
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | segundo-cerebro by orobsonn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 19 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 1 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
segundo-cerebro · Summary
A personal knowledge graph MCP server for Claude that runs on Cloudflare with automatic concept atomization and cross-domain analogy connections.
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
segundo-cerebro · Use cases
- Claude users wanting to preserve insights between conversations
- Cross-domain researchers seeking structural pattern connections
- Thinkers building a latticework of mental models like Charlie Munger
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-everythingsegundo-cerebro · Install
Installation Steps
- Clone the repository:
git clone https://github.com/orobsonn/segundo-cerebro.git - Install dependencies:
npm install - Log into Cloudflare:
npx wrangler login - Follow the Claude.md runbook in your agentic IDE
- Add the MCP server to Claude:
{
"mcpServers": {
"segundo-cerebro": {
"command": "npx",
"args": ["segundo-cerebro", "mcp"]
}
}
}