brightdata-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
brightdata-mcp by brightdata | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,366 | ★ 85,748 |
| 30d uses | — | — |
| Score | 57 | 77 |
| Official | — | ✓ |
| Categories | Web ScrapingDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 1 mo ago | this month |
brightdata-mcp · Summary
A powerful MCP server providing real-time web access without blocking for AI agents.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
brightdata-mcp · Use cases
- Real-time research for current prices, news, and live data
- E-commerce intelligence and price monitoring
- Coding agents accessing npm/PyPI package metadata and READMEs
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
brightdata-mcp · Install
Quick Start
**Use the hosted server (recommended):** Add this URL to your MCP client configuration:
https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN_HERE**Run locally:**
{
"mcpServers": {
"Bright Data": {
"command": "npx",
"args": ["@brightdata/mcp"],
"env": {
"API_TOKEN": "<your-api-token-here>"
}
}
}
}**Claude Desktop setup:**
- Go to Settings → Connectors → Add custom connector
- Name:
Bright Data Web - URL:
https://mcp.brightdata.com/mcp?token=YOUR_API_TOKEN - Click "Add"
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