everything vs dexto
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | dexto by truffle-ai | |
|---|---|---|
| Stars | ★ 85,748 | ★ 620 |
| 30天用量 | — | — |
| 综合分 | 77 | 51 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
dexto · 概述
TypeScript 实现的智能体框架,包含 MCP 服务器功能,用于构建和编排 AI 应用。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
dexto · 使用场景
- 构建自主编码智能体,能够读取、写入和重构代码
- 创建在复杂任务上协作的多智能体系统
- 开发 MCP 服务器,通过模型上下文协议暴露工具、文件和 API
- 构建具有持久记忆和上下文感知能力的数字助手
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-everythingdexto · 安装
安装
# macOS / Linux / WSL (原生安装程序,推荐)
curl -fsSL https://dexto.ai/install | bash
# Windows PowerShell
irm https://dexto.ai/install.ps1 | iex
# 或从源码构建
git clone https://github.com/truffle-ai/dexto.git
cd dexto && pnpm install && pnpm install-cli作为 MCP 服务器运行
# 启动为 MCP 服务器
npx dexto --mode mcp --agent coding-agent --auto-approve ----no-elicitationClaude Desktop 集成
添加到 claude_desktop_config.json:
{
"mcpServers": {
"dexto": {
"command": "npx",
"args": ["-y", "dexto", "--mode", "mcp", "--agent", "coding-agent", "--auto-approve", "--no-elicitation"]
}
}
}