everything vs plan-cascade
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | plan-cascade by Taoidle | |
|---|---|---|
| Stars | ★ 85,748 | ★ 80 |
| 30天用量 | — | — |
| 综合分 | 77 | 46 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
plan-cascade · 概述
Plan Cascade MCP 服务器通过将复杂项目分解为可并行执行的 AI 驱动任务,实现级联开发工作流。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
plan-cascade · 使用场景
- 将大型软件项目分解为可管理的并行任务并生成明确文档
- 自动化实现带有质量检查点的用户认证系统
- 跨不同 AI 提供商的 LLM 协作进行功能开发
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-everythingplan-cascade · 安装
安装
作为 Claude Desktop 插件
claude plugins install plan-cascade通过 MCP 服务器
添加到 Claude Desktop 配置:
{
"mcpServers": {
"plan-cascade": {
"command": "uv",
"args": ["run", "python", "-m", "plan_cascade.mcp_server"],
"env": {
"PYTHONPATH": "/path/to/plan-cascade"
}
}
}
}Python CLI
pip install plan-cascade桌面应用
查看 [desktop/README.md](./desktop/README.md) 了解基于 Tauri 的桌面应用安装说明。