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 | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this 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.pyFor 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