MCP Catalogs
Home

mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp
by cloudflare
everything
by modelcontextprotocol
Stars★ 459★ 85,748
30d uses
Score5377
Official
Categories
Developer ToolsOps & InfraWeb Scraping
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp · Summary

Token-efficient MCP server for Cloudflare API with 2500 endpoints accessible via Code Mode.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp · Use cases

  • Automating Cloudflare resource management through AI agents
  • CI/CD workflows for Cloudflare deployment and configuration
  • Interactive queries and analysis of Cloudflare analytics data

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 · Install

Installation

  1. Add to Claude Desktop:
{
  "mcpServers": {
    "cloudflare-api": {
      "url": "https://mcp.cloudflare.com/mcp"
    }
  }
}
  1. For API Token authentication:
{
  "mcpServers": {
    "cloudflare-api": {
      "url": "https://mcp.cloudflare.com/mcp",
      "bearerToken": "YOUR_CLOUDFLARE_API_TOKEN"
    }
  }
}
  1. Disable Code Mode (if needed):
{
  "mcpServers": {
    "cloudflare-api": {
      "url": "https://mcp.cloudflare.com/mcp?codemode=false"
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.