mcp-aoai-web-browsing vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-aoai-web-browsing by kimtth | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 33 | ★ 85,748 |
| 30d uses | — | — |
| Score | 41 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
mcp-aoai-web-browsing · Summary
MCP server with Playwright browser automation via FastMCP, supporting both Azure and OpenAI APIs.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-aoai-web-browsing · Use cases
- Web automation and testing through LLM interactions
- Browser-based data extraction and analysis
- AI-powered web navigation assistance
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
mcp-aoai-web-browsing · Install
# Install uv for dependency management
pip install uv
# Install dependencies
uv sync
# Run the application
python chatgui.pyFor Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"browser-navigator": {
"command": "uv",
"args": ["run", "fastmcp", "run", "./server/browser_navigator_server.py:app"],
"cwd": "/path/to/mcp-aoai-web-browsing",
"env": {
"AZURE_OPEN_AI_ENDPOINT": "...",
"AZURE_OPEN_AI_API_KEY": "...",
"AZURE_OPEN_AI_DEPLOYMENT_MODEL": "...",
"AZURE_OPEN_AI_API_VERSION": "..."
}
}
}
}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