MCP Catalogs
Home

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
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Knowledge GraphProductivityAI / LLM Tools
LanguageTypeScriptHTML
Last committhis monththis 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-everything

second-brain-cloudflare · Install

Installation

  1. Click the 'Deploy to Cloudflare' button in the README
  2. During deployment, set an AUTH_TOKEN (you can use a memorable phrase or generate a secure one)
  3. Save the token as you'll need it to connect AI clients
  1. 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>"
      }
    }
  }
}
  1. For other clients, follow the specific instructions in the documentation.
Comparison generated from public README + GitHub signals. Last updated automatically.