puppeteer-mcp-claude vs everything
Side-by-side comparison to help you pick between these two MCP servers.
puppeteer-mcp-claude by jaenster | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 38 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
puppeteer-mcp-claude · Summary
Browser automation MCP server for Claude using Puppeteer to control web pages, capture screenshots, and interact with websites.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
puppeteer-mcp-claude · Use cases
- Automated web scraping and data extraction from websites
- Taking screenshots of web pages for documentation or analysis
- Automated form filling and website interaction workflows
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-claude · Install
Install
**macOS / Linux**
curl -fsSL https://raw.githubusercontent.com/jaenster/puppeteer-mcp-claude/main/install.sh | bash**Windows (PowerShell)**
iwr -useb https://raw.githubusercontent.com/jaenster/puppeteer-mcp-claude/main/install.ps1 | iex**Manual installation**
npm install -g puppeteer-mcp-claude
claude mcp add puppeteer-mcp-claude -- npx -y puppeteer-mcp-claude serve**Claude Desktop Configuration** Add to claude_desktop_config.json:
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "puppeteer-mcp-claude", "serve"]
}
}
}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