dotbot vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
dotbot by andresharpe | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 50 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 45 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具效率工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | PowerShell | TypeScript |
| 最近提交 | 本月 | 本月 |
dotbot · 概述
零依赖的 MCP 服务器,为团队提供结构化、可审计的 AI 辅助开发。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
dotbot · 使用场景
- 团队 AI 开发,具备合规和知识共享的可审计追踪
- 多步骤 AI 编码工作流程,具有任务依赖和每任务模型选择
- 企业工作流和堆栈注册库,用于标准化 AI 辅助开发流程
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
dotbot · 安装
安装步骤
- **全局安装 dotbot**:
Install-Module Dotbot -Scope CurrentUser- **在项目中初始化**:
cd your-project
dotbot init
dotbot init -Workflow <工作流名称> -Stack <堆栈名称>- **在 Claude Desktop 中配置 MCP 服务器**:
{
"mcpServers": {
"dotbot": {
"command": "pwsh",
"args": ["-NoProfile", "-File", ".bot/systems/mcp/dotbot-mcp.ps1"]
}
}
}- **启动网络仪表板**:
.bot\go.ps1everything · 安装
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