cortex-scout vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cortex-scout by cortex-works | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 65 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | 浏览器自动化网页抓取AI / LLM 工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Rust | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
cortex-scout · 概述
为AI代理提供统一网页抓取和有状态自动化引擎,支持MCP集成。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cortex-scout · 使用场景
- 需要反机器人处理的令牌高效网页检索的 AI 代理
- 替代 Playwright 等重型框架的自动化测试工作流
- 需要深度多跳搜索和提取的研究系统
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cortex-scout · 安装
安装
选项 A — 预构建二进制文件
从 GitHub Releases 下载最新版本:
cortex-scout-mcp— MCP stdio 服务器(推荐用于 VS Code/Cursor/Claude Desktop)cortex-scout— 可选的 HTTP 服务器
选项 B — 从源码构建
先安装 protoc,然后:
git clone https://github.com/cortex-works/cortex-scout.git
cd cortex-scout
cargo build --release --manifest-path mcp-server/Cargo.toml --bin cortex-scout-mcpClaude Desktop 集成
添加到 Claude Desktop 配置:
{
"mcpServers": {
"cortex-scout": {
"command": "env",
"args": [
"RUST_LOG=warn",
"CORTEX_SCOUT_TOOL_TIMEOUT_SECS=90",
"/path/to/cortex-scout-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