MCP Catalogs
Home

cdpilot vs everything

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

cdpilot
by mehmetnadir
everything
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4477
Official
Categories
Browser AutomationDeveloper ToolsWeb Scraping
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

cdpilot · Summary

Zero-dependency browser automation CLI with MCP server for AI agents, offering 70+ commands and stealth mode.

everything · Summary

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

cdpilot · Use cases

  • Automated web scraping and data extraction without installing heavy dependencies
  • AI agent-controlled browser interaction for web applications testing
  • Stealth mode automation for accessing sites with anti-bot measures

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

cdpilot · Install

Installation

# Use directly (no install needed)
npx cdpilot <command>

# Or install globally
npm i -g cdpilot

**Requirements:** Node.js 18+ and one of: Brave Browser, Google Chrome, or Chromium.

First-time setup

npx cdpilot setup     # Auto-detect browser, create isolated profile
npx cdpilot launch    # Start browser with CDP enabled
npx cdpilot status    # Check connection

Claude Desktop Configuration

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "cdpilot": {
      "command": "npx",
      "args": ["cdpilot", "mcp"]
    }
  }
}

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.