everything vs stealth-browser-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | stealth-browser-mcp by vibheksoni | |
|---|---|---|
| Stars | ★ 85,748 | ★ 643 |
| 30天用量 | — | — |
| 综合分 | 77 | 54 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 浏览器自动化网页抓取开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
stealth-browser-mcp · 概述
Stealth Browser MCP 提供反检测浏览器自动化功能,专为 MCP 兼容的 AI 代理设计。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
stealth-browser-mcp · 使用场景
- 在带有反机器人措施的受保护网站上自动化网页抓取
- 通过 AI 聊天命令创建网站 UI 克隆
- 实时拦截和修改网络流量
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingstealth-browser-mcp · 安装
# 克隆并安装
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv
# 激活虚拟环境
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate
pip install -r requirements.txt**Claude Desktop 配置:**
{
"mcpServers": {
"stealth-browser-mcp": {
"command": "/path/to/stealth-browser-mcp/venv/bin/python",
"args": ["/path/to/stealth-browser-mcp/src/server.py"]
}
}
}