cdpilot vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cdpilot by mehmetnadir | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化开发者工具网页抓取 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
cdpilot · 概述
零依赖浏览器自动化CLI,带有MCP服务器,为AI代理提供70+命令和隐身模式。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cdpilot · 使用场景
- 无需安装大量依赖的自动化网页抓取和数据提取
- AI代理控制的浏览器交互,用于Web应用程序测试
- 隐身模式自动化,用于访问具有反机器人措施的网站
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cdpilot · 安装
安装
# 直接使用(无需安装)
npx cdpilot <命令>
# 或全局安装
npm i -g cdpilot**要求:** Node.js 18+ 和以下浏览器之一:Brave Browser、Google Chrome 或 Chromium。
首次设置
npx cdpilot setup # 自动检测浏览器,创建隔离配置文件
npx cdpilot launch # 启用CDP启动浏览器
npx cdpilot status # 检查连接Claude Desktop 配置
将以下内容添加到您的 Claude Desktop 配置文件中:
{
"mcpServers": {
"cdpilot": {
"command": "npx",
"args": ["cdpilot", "mcp"]
}
}
}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-everything