MCP Catalogs
Home

brightdata-mcp-adk-hackathon vs everything

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

brightdata-mcp-adk-hackathon
by arjunprabhulal
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3477
Official
Categories
Web ScrapingDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit12 mo agothis month

brightdata-mcp-adk-hackathon · Summary

Professional web scraping platform using BrightData MCP server with 50+ tools and Google ADK integration.

everything · Summary

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

brightdata-mcp-adk-hackathon · Use cases

  • E-commerce price comparison and product data extraction
  • Social media trend analysis and content monitoring
  • Business intelligence and competitive research
  • News aggregation and content analysis

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-adk-hackathon · Install

Installation

Prerequisites

  • Python 3.11+
  • Node.js 20+
  • Docker & Docker Compose
  • BrightData API credentials
  • Google AI API key

Quick Start

  1. Clone the repository:
git clone https://github.com/arjunprabhulal/brightdata-mcp-adk-hackathon.git
cd brightdata-mcp-adk-hackathon
  1. Configure environment:
cp backend/config/.env.example backend/config/.env
# Edit .env with your API credentials
  1. Start with Docker:
docker compose up -d

Claude Desktop Configuration

{
  "mcpServers": {
    "brightdata-mcp": {
      "command": "python",
      "args": ["path/to/brightdata/mcp/server.py"],
      "env": {
        "BRIGHTDATA_API_TOKEN": "your_token_here"
      }
    }
  }
}

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.