- 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>
2.0 KiB
2.0 KiB
title
| title |
|---|
| Adding Custom MCP Servers |
import ExpandableImage from '@site/src/components/ExpandableImage';
Adding Custom MCP Servers
Extend Dexto's capabilities by adding your own Model Context Protocol (MCP) servers with new tools and data sources.
What it does
Add custom MCP servers to:
- Connect new tools and APIs
- Access external data sources
- Integrate third-party services
- Build custom functionality
How to add MCP servers
Option 1: Via Web UI
# Launch the Web UI
dexto
- Click on "MCP Servers" in the sidebar
- Click "Add Server"
- Enter server configuration
- Save and the server tools become available immediately
Option 2: Via agent.yml
Edit your agent configuration file:
# agents/my-agent.yml
mcpServers:
custom-server:
type: stdio
command: npx
args: ['-y', 'your-mcp-server-package']
env:
API_KEY: $YOUR_API_KEY
Option 3: Via CLI
# Edit agent config directly
nano ~/.dexto/agents/your-agent.yml
# Or use the coding agent config
nano ~/.dexto/agents/coding-agent/coding-agent.yml
Example: Adding Brave Search
mcpServers:
web-search:
type: stdio
command: npx
args: ['-y', '@modelcontextprotocol/server-brave-search']
env:
BRAVE_API_KEY: $BRAVE_API_KEY
Available MCP Servers
Browse 20+ ready-to-use MCP servers in the MCP Store including:
- Filesystem - File operations
- Brave Search - Web search
- GitHub - Repository management
- Slack - Team communication
- PostgreSQL - Database access
- And many more!