feat: Add intelligent auto-router and enhanced integrations

- Add intelligent-router.sh hook for automatic agent routing
- Add AUTO-TRIGGER-SUMMARY.md documentation
- Add FINAL-INTEGRATION-SUMMARY.md documentation
- Complete Prometheus integration (6 commands + 4 tools)
- Complete Dexto integration (12 commands + 5 tools)
- Enhanced Ralph with access to all agents
- Fix /clawd command (removed disable-model-invocation)
- Update hooks.json to v5 with intelligent routing
- 291 total skills now available
- All 21 commands with automatic routing

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-28 00:27:56 +04:00
Unverified
parent 3b128ba3bd
commit b52318eeae
1724 changed files with 351216 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
---
sidebar_position: 8
sidebar_label: "Using Dexto to group MCP servers"
---
# Using Dexto CLI to group MCP servers together
Dexto can operate in **MCP Tools Mode**, where it acts as a local tool aggregation server that groups MCP servers and re-exposes them all under 1 common MCP server.
Unlike the regular MCP server mode where you interact with a Dexto AI agent, this mode provides direct access to the underlying tools without an AI intermediary.
This is useful when you want to:
- Access tools from multiple MCP servers through a single connection
- Group tools directly without AI agent processing
- Create a centralized tool hub for your development environment
## How It Works
In MCP Tools Mode, Dexto:
1. Connects to multiple MCP servers as configured
2. Aggregates all available tools from these servers
3. Exposes them directly as its own local MCP server
4. Acts as a pass-through for tool execution
## Configuration
### Step 1: Create a Dexto Configuration File
Create a `dexto-tools.yml` configuration file with the MCP servers you want to aggregate:
```yaml
# dexto-tools.yml
mcpServers:
filesystem:
type: stdio
command: npx
args:
- -y
- "@modelcontextprotocol/server-filesystem"
- "."
playwright:
type: stdio
command: npx
args:
- "-y"
- "@playwright/mcp@latest"
```
- You don't need LLM configuration for tools mode
- Only the mcpServers section is used
### Step 2: Setup in Cursor
Add the following to your `.cursor/mcp.json` file:
```json
{
"mcpServers": {
"dexto-tools": {
"command": "npx",
"args": [
"-y",
"dexto",
"mcp",
"--group-servers",
"-a",
"path/to/your/dexto-tools.yml"
]
}
}
}
```
Or use the default Dexto configuration
```json
{
"mcpServers": {
"dexto-tools": {
"command": "npx",
"args": [
"-y",
"dexto",
"mcp",
"--group-servers"
]
}
}
}
```
### Step 3: Restart Cursor
After adding the configuration, restart Cursor to load the new MCP server.