Best for
- Developers wanting to leverage a powerful coding agent within MCP clients
- Builders creating AI applications requiring complex agent orchestration
- Hobbyists and teams seeking a customizable, config-driven agent harness
Dexto is an agent harness—the orchestration layer that turns LLMs into reliable, stateful agents that can take actions, remember context, and recover from errors. It provides configuration-driven agent definitions (YAML), session management, tool orchestration, memory, multimodal support, and observability. Dexto can run locally, cloud, or hybrid, with CLI, Web UI, REST API, and Discord/Telegram integrations. It can also act as an MCP server over stdio, exposing your agent to clients like Claude Code or Cursor.
Install: curl -fsSL https://dexto.ai/install | bash (macOS/Linux/WSL) or irm https://dexto.ai/install.ps1 | iex (Windows PowerShell). For MCP mode, ensure you pass --mode mcp and specify the agent with --agent coding-agent, and add --auto-approve and --no-elicitation for non-interactive operation. Example MCP config: {"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"
]
}