everything vs web-agent-protocol
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | web-agent-protocol by OTA-Tech-AI | |
|---|---|---|
| Stars | ★ 85,748 | ★ 497 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Browser AutomationWeb ScrapingAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 11 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
web-agent-protocol · Summary
Web Agent Protocol (WAP) records browser interactions and converts them into MCP servers for web automation replay.
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
web-agent-protocol · Use cases
- Automating repetitive web tasks by recording and replaying user interactions
- Creating MCP servers from browser workflows for AI agent automation
- Testing web applications by replaying exact user interaction sequences
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-everythingweb-agent-protocol · Install
# Install dependencies
conda create -n WAP python=3.11
conda activate WAP
pip install -r requirements.txt
# Set environment variables
set PYTHONPATH=/path/to/webagentprotocol # Windows
export PYTHONPATH=/path/to/webagentprotocol # Linux
# Create .env file with API keys
OPENAI_API_KEY=sk-proj-...
DEEPSEEK_API_KEY=sk-...
# Install Chrome extension
# See https://github.com/OTA-Tech-AI/webagentprotocol/tree/main/chrome-extensionFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"wap": {
"command": "python",
"args": ["/path/to/webagentprotocol/wap_service.py"]
}
}
}```