MCP Catalogs
Home

remote-mcp-server-authless-andor vs everything

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

remote-mcp-server-authless-andor
by elizabethsiegle
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score2877
Official
Categories
Web ScrapingBrowser AutomationAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

remote-mcp-server-authless-andor · Summary

Remote MCP server for web scraping using Cloudflare Browser Rendering and Workers AI, with no authentication required.

everything · Summary

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

remote-mcp-server-authless-andor · Use cases

  • Extracting content from websites that require browser rendering
  • Creating custom AI-powered web scraping tools
  • Building remote MCP services without authentication infrastructure

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

remote-mcp-server-authless-andor · Install

Installation

  1. Deploy to Cloudflare Workers using the button below:

[![Deploy to Workers](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/cloudflare/ai/tree/main/demos/remote-mcp-authless)

  1. Or use the command line to create the project locally:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
  1. Connect to Claude Desktop by adding this to your config:
{
  "mcpServers": {
    "calculator": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"
      ]
    }
  }
}

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.