适合谁
- 开发人员希望在 MCP 客户端中利用强大的编码代理
- 构建需要复杂代理编排的 AI 应用
- 爱好者和团队寻求可定制、配置驱动的代理框架
Dexto 是一个代理框架,作为组织层将 LLM 转变为可靠、有状态且能采取行动、记住上下文并从错误中恢复的代理。它提供配置驱动的代理定义(YAML)、会话管理、工具编排、记忆、多模态支持和可观测性。Dexto 可以本地、云端或混合运行,并提供 CLI、Web UI、REST API 以及 Discord/Telegram 集成。它也可以作为 MCP 服务器通过 stdio 暴露代理,让您可以在 Claude Code 或 Cursor 等客户端中使用其 capabilities。
安装:curl -fsSL https://dexto.ai/install | bash(macOS/Linux/WSL)或 irm https://dexto.ai/install.ps1 | iex(Windows PowerShell)。使用 MCP 模式时,确保传递 --mode mcp,并使用 --agent coding-agent 指定代理,添加 --auto-approve 和 --no-elicitation 以在非交互模式运行。示例 MCP 配置:{"command":"npx","args":["-y","dexto","--mode","mcp","--agent","coding-agent","--auto-approve","--no-elicitation"]}。
{
"command": "npx",
"args": [
"-y",
"dexto",
"--mode",
"mcp",
"--agent",
"coding-agent",
"--auto-approve",
"--no-elicitation"
]
}