-
-
Notifications
You must be signed in to change notification settings - Fork 6
Channels
Michael Elliott edited this page Mar 14, 2026
·
2 revisions
TITAN supports 15 messaging channels.
Built-in web chat in Mission Control v2. No configuration needed. Supports markdown rendering, typing indicators, and SSE/WebSocket streaming.
{ "channels": { "discord": { "enabled": true, "token": "BOT_TOKEN" } } }Or set DISCORD_TOKEN env var.
{ "channels": { "telegram": { "enabled": true, "token": "BOT_TOKEN" } } }{ "channels": { "slack": { "enabled": true, "token": "BOT_TOKEN" } } }Configure with webhook URL or service account.
{ "channels": { "line": { "enabled": true, "channelAccessToken": "TOKEN", "channelSecret": "SECRET" } } }{ "channels": { "zulip": { "enabled": true, "site": "https://your-org.zulipchat.com", "email": "bot@your-org.zulipchat.com", "apiKey": "API_KEY" } } }Via Baileys (WhatsApp Web). QR code pairing on first connect.
{ "channels": { "whatsapp": { "enabled": true } } }Optional dep: @whiskeysockets/baileys
Via matrix-js-sdk. Set MATRIX_HOMESERVER_URL env var.
{ "channels": { "matrix": { "enabled": true, "token": "ACCESS_TOKEN" } } }Via signal-cli REST API. Set SIGNAL_API_URL and SIGNAL_NUMBER env vars.
{ "channels": { "signal": { "enabled": true } } }Via Bot Framework or incoming webhooks.
{ "channels": { "msteams": { "enabled": true, "token": "WEBHOOK_URL" } } }Via irc-framework. Supports multiple networks.
{ "channels": { "irc": { "enabled": true, "server": "irc.libera.chat", "nick": "titan-bot", "channels": ["#my-channel"] } } }Via Mattermost Bot API or webhook.
{ "channels": { "mattermost": { "enabled": true, "url": "https://mattermost.example.com", "token": "BOT_TOKEN" } } }Via Lark Open Platform bot.
{ "channels": { "lark": { "enabled": true, "appId": "APP_ID", "appSecret": "APP_SECRET" } } }Monitors an IMAP inbox and responds via SMTP.
{ "channels": { "email": { "enabled": true, "imap": { "host": "imap.gmail.com", "user": "you@gmail.com", "password": "app-password" }, "smtp": { "host": "smtp.gmail.com", "user": "you@gmail.com", "password": "app-password" } } } }Each channel supports dmPolicy: pairing (default), open, or closed.