MCP Catalogs
Home

sample-agentic-ai-web vs everything

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

sample-agentic-ai-web
by aws-samples
everything
by modelcontextprotocol
Stars★ 50★ 85,748
30d uses
Score4577
Official
Categories
Browser AutomationWeb ScrapingAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit3 mo agothis month

sample-agentic-ai-web · Summary

Amazon Bedrock web automation assistant with MCP server for browser automation and vision capabilities.

everything · Summary

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

sample-agentic-ai-web · Use cases

  • Web scraping and data extraction
  • Automated e-commerce product searches
  • UI testing and website automation

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

sample-agentic-ai-web · Install

# Clone the repository
git clone https://github.com/aws-samples/sample-agentic-ai-web.git

cd sample-agentic-ai-web

# Install dependencies
pip install -r requirements.txt

# Run the MCP server
python 10-mcp-server.py

For Claude Desktop configuration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "bedrock-web-tools": {
      "command": "python",
      "args": ["path/to/10-mcp-server.py"]
    }
  }
}

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.