everything vs second-brain-cloudflare
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | second-brain-cloudflare by rahilp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 61 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphProductivityAI / LLM Tools |
| Language | TypeScript | HTML |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
second-brain-cloudflare · Summary
Self-hosted MCP server providing personal memory layer across AI tools like Claude and ChatGPT.
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
second-brain-cloudflare · Use cases
- Personal knowledge management across multiple AI assistants
- Project context tracking that works with any AI tool
- Semantic search for notes and ideas across conversations
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-everythingsecond-brain-cloudflare · Install
Installation
- Click the 'Deploy to Cloudflare' button in the README
- During deployment, set an AUTH_TOKEN (you can use a memorable phrase or generate a secure one)
- Save the token as you'll need it to connect AI clients
- Connect Claude Desktop by adding to
claude_desktop_config.json:
{
"mcpServers": {
"second-brain": {
"command": "npx",
"args": ["@modelcontextprotocol/server-cloudflare", "https://<your-worker-url>"],
"env": {
"AUTH_TOKEN": "<your-token>"
}
}
}
}- For other clients, follow the specific instructions in the documentation.