MCP Catalogs
Home

everything vs puppeteer-mcp-server

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

everything
by modelcontextprotocol
puppeteer-mcp-server
by sultannaufal
Stars★ 85,748★ 19
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptTypeScript
Last committhis month6 mo ago

everything · Summary

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

puppeteer-mcp-server · Summary

Self-hosted Puppeteer MCP server with browser automation tools, supporting multiple transports and API key authentication.

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

puppeteer-mcp-server · Use cases

  • Automated web testing and screenshots of web applications
  • Web scraping and data extraction from dynamic websites
  • Automated form filling and UI interaction testing

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

puppeteer-mcp-server · Install

Installation

Using Docker (Recommended)

# Clone the repository
git clone https://github.com/sultannaufal/puppeteer-mcp-server.git
cd puppeteer-mcp-server

# Create .env file with your API key
echo "API_KEY=your-secure-api-key-here" > .env

# Start with Docker Compose
docker compose --env-file .env up -d

Manual Installation

# Prerequisites: Node.js 18+, npm 8+
npm install
npm run build
npm start

Claude Desktop Configuration

Add to your Claude Desktop config.json:

{
  "mcpServers": {
    "puppeteer": {
      "command": "node",
      "args": ["dist/server.js"],
      "env": {
        "API_KEY": "your-api-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.