Skip to main content

Channels

Added in: @mastra/core@1.22.0

Channels connect agents to messaging platforms. Configure them via the channels property on the Agent constructor. The object you pass is a ChannelConfig. See the Channels overview for concepts and platform setup instructions.

Usage example
Direct link to Usage example

src/mastra/agents/support-agent.ts
import { Agent } from '@mastra/core/agent'
import { createSlackAdapter } from '@chat-adapter/slack'
import { createDiscordAdapter } from '@chat-adapter/discord'

export const supportAgent = new Agent({
id: 'support-agent',
name: 'Support Agent',
instructions: 'You are a helpful support assistant.',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
slack: createSlackAdapter(),
discord: createDiscordAdapter(),
},
},
})

Parameters
Direct link to Parameters

The channels property accepts a ChannelConfig object with the following fields:

adapters:

Record<string, Adapter | ChannelAdapterConfig>
Platform adapters keyed by name (e.g. slack, discord). Pass an Adapter directly for defaults, or a ChannelAdapterConfig object to customize per-adapter options.

handlers?:

ChannelHandlers
Override default message handlers for DMs, mentions, and subscribed threads.

inlineMedia?:

string[] | ((mimeType: string) => boolean)
= ['image/png', 'image/jpeg', 'image/webp', 'application/pdf']
Controls which attachment types are sent as file parts to the model. Types that do not match are described as text summaries. Accepts an array of mime type globs or a predicate function. The default matches the formats supported by major vision models.

tools?:

boolean
= true
Whether getTools() returns the channel-specific tools (add_reaction, remove_reaction). Set to false for models that do not support function calling. Channel tools are never added to the agent automatically — pass them explicitly via tools: { ...channels.getTools() }.

state?:

StateAdapter
= MastraStateAdapter (from Mastra storage)
State adapter for subscriptions and deduplication. Defaults to MastraStateAdapter backed by the Mastra instance storage. Channels require storage to be configured.

userName?:

string
= agent's `name`
Bot display name shown in platform messages. Defaults to the agent's name, or 'Mastra' if no name is set.

threadContext?:

{ maxMessages?: number; addSystemMessage?: boolean }
= { maxMessages: 10, addSystemMessage: true }
How the agent picks up context about the current thread. maxMessages controls how many recent platform messages are fetched on first mention (set to 0 to disable; only applies to non-DM threads). addSystemMessage: false skips the built-in system message that tells the agent which channel/platform a request came from.

chatOptions?:

Omit<ChatConfig, 'adapters' | 'state' | 'userName'>
Additional options passed directly to the Chat SDK. Use for advanced configuration such as dedupeTtlMs, fallbackStreamingPlaceholderText, lockScope, and messageHistory.

resolveResourceId?:

(ctx: ResolveResourceIdContext) => string | Promise<string>
Decide which resourceId owns resource-level memory for a channel thread, separately from who sent the message. Runs only when a new thread is created; reused threads keep their stored owner and never call the hook. Return ctx.defaultResourceId (${platform}:${message.author.userId}) to keep the built-in behavior.

resolveThreadId?:

(ctx: ResolveThreadIdContext) => string | Promise<string>
Decide the internal Mastra thread id for a channel thread. Runs after resolveResourceId with the resolved owner on the context, and only when a new thread is created; reused threads keep their stored id and never call the hook. The returned id must be unique across the memory store — on collision a generated id is used instead. Return ctx.defaultThreadId (a random UUID) to keep the built-in behavior.

waitUntil?:

(promise: Promise<unknown>) => void
Platform waitUntil function. Required on Vercel so background agent runs survive after the webhook returns 200. On Vercel pass waitUntil from @vercel/functions. Cloudflare Workers and Netlify Functions are detected automatically from the request context. AWS Lambda does not need waitUntil because it waits for the event loop to drain naturally.

resolveWaitUntil?:

(c: Context) => ((promise: Promise<unknown>) => void) | undefined
Resolver for runtimes where waitUntil lives on the Hono request context but is not covered by the built-in helper. Resolution order: bare waitUntilresolveWaitUntil(c) → default (Cloudflare Workers, Netlify).

Per-adapter options
Direct link to Per-adapter options

Wrap an adapter in a ChannelAdapterConfig object to set per-adapter options:

src/mastra/agents/example.ts
import { Agent } from '@mastra/core/agent'
import { createDiscordAdapter } from '@chat-adapter/discord'
import { createSlackAdapter } from '@chat-adapter/slack'

const agent = new Agent({
id: 'example',
name: 'Example',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
discord: {
adapter: createDiscordAdapter(),
toolDisplay: 'text',
cors: {
origin: ['https://customer-saas.example'],
credentials: true,
},
gateway: false,
},
slack: createSlackAdapter(), // Plain adapter uses defaults
},
},
})

adapter:

Adapter
The Chat SDK adapter instance for this platform.

gateway?:

boolean
= true
Start a persistent Gateway WebSocket listener for receiving DMs, @mentions, and reactions. Set to false for serverless deployments that only need webhook-based interactions.

cards?:

boolean
**Deprecated** — use toolDisplay instead. When toolDisplay is not set, cards: true maps to toolDisplay: "cards" and cards: false maps to toolDisplay: "text". IDEs flag the field with a strikethrough; runtime behavior is preserved.

cors?:

CorsOptions
CORS configuration for this adapter webhook route. Use this for browser-based channel adapters that need cross-origin credentials.

formatError?:

(error: Error) => PostableMessage
= "❌ Error: <error.message>"
Override how errors are rendered in the chat. Return a user-friendly message instead of exposing the raw error.

formatToolCall?:

(args: { toolName: string; args: unknown; result: unknown; isError: boolean }) => PostableMessage | null
**Deprecated** — use toolDisplay (function form) instead. When set, runs as a ToolDisplayFn that only fires on result/error events; running and approval events fall through to no render. Mutually exclusive with toolDisplay at the type level.

streaming?:

boolean | { updateIntervalMs?: number }
= false (true for Slack)
Stream agent text deltas to the channel as the agent generates them instead of buffering and posting once per step. Requires the underlying adapter to support post-and-edit streaming. Slack defaults to true; other adapters default to false.

textFormat?:

'markdown' | 'plain'
= 'markdown'
Dialect for the agent's final reply text. 'markdown' (the default) posts replies as markdown: adapters with native markdown rendering (Slack) render it directly, others convert it to their platform format. 'plain' posts replies as literal plain text, restoring the pre-markdown behavior for agents prompted to emit a platform dialect such as Slack mrkdwn. Applies to final reply text only; tool cards, error messages, and tripwire notices are unaffected. Native streaming is always markdown regardless of this setting.

toolDisplay?:

'cards' | 'text' | 'timeline' | 'grouped' | 'hidden' | ToolDisplayFn
= 'cards' ('grouped' for Slack)
How tool calls are rendered in the channel. "cards" posts per-tool running/result cards as rich Block Kit. "text" posts the same lifecycle as plain text (no Block Kit). "timeline" and "grouped" stream tool state as inline task_update chunks (requires streaming: true; Slack only today — other adapters may render a placeholder). "hidden" executes tools silently. Pass a function to render tool events yourself; return { kind: "post", message } for a discrete post/edit, { kind: "stream", chunk } to push into the streaming widget, or undefined to skip rendering that event. Add openIfEmpty: false to a stream result when its chunk should only apply to an active streaming session. Approve/deny prompts always render as a separate card regardless of mode.

typingStatus?:

boolean | ((chunk: AgentChunkType, ctx: TypingStatusContext) => string | false | null | undefined | void)
= true
Control the platform typing indicator. true uses built-in defaults (is typing… on text, is calling {tool}… on tool-call, is waiting for approval… on tool-call-approval). false suppresses typing entirely — useful when a live streaming widget (e.g. toolDisplay: "grouped" in Slack) already conveys progress. Pass a function to set custom status copy per chunk; return a string to set the status, or false/null/undefined to leave it unchanged. Compose with defaultTypingStatus (exported from @mastra/core/channels) to fall back to defaults for chunks you don't handle.

Tool display modes
Direct link to Tool display modes

toolDisplay controls how tool calls render in chat. The default 'cards' posts a "Running…" card per tool and edits it with the result, matching the behavior in earlier versions. 'text' is the same lifecycle but without rich Block Kit, useful for platforms that don't render cards well.

'timeline' and 'grouped' stream tool state as inline task_update chunks alongside the agent's text. These modes require streaming: true and rely on the chat adapter to render the chunks. Slack supports both natively; other adapters may render a placeholder until they add support. If streaming is disabled, the channel logs a one-time warning and falls back to 'cards'.

'hidden' executes tools silently. Only the typing status indicates work in progress.

Pass a function to toolDisplay for fully custom rendering. The function receives a ToolDisplayEvent (running / result / error / approval) and a ToolDisplayContext ({ mode, platform }); return { kind: 'post', message } for a discrete post/edit, { kind: 'stream', chunk } to push into the active streaming widget, or undefined to skip rendering that event.

By default, a stream result opens a streaming session when none is active. Set openIfEmpty: false when the chunk only applies to an existing session. Mastra skips the chunk when no session is active. Static channels ignore this option and keep their existing plain-text fallback behavior.

toolDisplay: event => {
if (event.kind !== 'running') return undefined

return {
kind: 'stream',
chunk: {
type: 'task_update',
id: event.toolCallId,
title: event.displayName,
status: 'in_progress',
},
openIfEmpty: false,
}
}

Approve/deny prompts (requireApproval) always render as a separate card regardless of mode, because inline task entries can't carry interactive buttons.

src/mastra/agents/streaming.ts
import { Agent } from '@mastra/core/agent'
import { createSlackAdapter } from '@chat-adapter/slack'

const agent = new Agent({
id: 'streaming-agent',
name: 'Streaming Agent',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
slack: {
adapter: createSlackAdapter(),
streaming: true, // already the Slack default
toolDisplay: 'timeline',
},
},
},
})

Custom typing status
Direct link to Custom typing status

Pass a function to typingStatus to customize the status copy. The function is called once per stream chunk; return a string to set the status, or false / null / undefined to leave the current status unchanged. Return values are de-duplicated so the platform only sees a call when the status changes.

defaultTypingStatus is exported from @mastra/core/channels so you can fall back to the built-in defaults for chunks you don't handle.

src/mastra/agents/custom-typing.ts
import { Agent } from '@mastra/core/agent'
import { defaultTypingStatus } from '@mastra/core/channels'
import { createDiscordAdapter } from '@chat-adapter/discord'

const agent = new Agent({
id: 'custom-typing-agent',
name: 'Custom Typing Agent',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
discord: {
adapter: createDiscordAdapter(),
typingStatus: (chunk, ctx) => {
if (chunk.type === 'tool-call' && chunk.payload.toolName === 'searchDocs') {
return 'is searching docs…'
}
return defaultTypingStatus(chunk, ctx)
},
},
},
},
})

Handlers
Direct link to Handlers

Override built-in event handlers. Each handler can be:

  • Omitted: uses the default Mastra handler (routes the message through the agent and posts the response)
  • false: disables the handler entirely
  • A function (thread, message, defaultHandler) => Promise<void>: wraps or replaces the default
src/mastra/agents/custom-handlers.ts
import { Agent } from '@mastra/core/agent'
import { createSlackAdapter } from '@chat-adapter/slack'

const agent = new Agent({
id: 'custom-handler-agent',
name: 'Custom Handler Agent',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
slack: createSlackAdapter(),
},
handlers: {
onMention: async (thread, message, defaultHandler) => {
console.log('Received mention:', message.text)
await defaultHandler(thread, message)
},
onDirectMessage: false,
},
},
})

onDirectMessage?:

ChannelHandler | false
Called when the bot receives a direct message.

onMention?:

ChannelHandler | false
Called when the bot is @mentioned in a channel or thread.

onSubscribedMessage?:

ChannelHandler | false
Called for messages in threads the agent has subscribed to.

The ChannelHandler function signature:

type ChannelHandler = (
thread: Thread,
message: Message,
defaultHandler: (thread: Thread, message: Message) => Promise<void>,
ctx: ChannelHandlerContext,
) => Promise<void>

type ChannelHandlerContext = {
mastra?: Mastra
requestContext: RequestContext
}

ctx.mastra is the resolved mastra instance, so a handler can reach storage or other registered primitives without being passed an external accessor:

onDirectMessage: async (thread, message, defaultHandler, ctx) => {
const store = await ctx.mastra?.getStorage()?.getStore('memory')
await defaultHandler(thread, message)
}

ctx.requestContext is the RequestContext for the run this message is about to start, built fresh for every message. Write to it before calling defaultHandler and the value reaches the run, alongside the channel entries Mastra adds afterward:

onDirectMessage: async (thread, message, defaultHandler, ctx) => {
ctx.requestContext.set('locale', 'en-GB')
await defaultHandler(thread, message)
}

Anything the run reads from its request context can be decided per message this way, such as which user a platform sender maps to.

Resource ID resolution
Direct link to Resource ID resolution

By default a channel thread's memory resourceId is ${platform}:${message.author.userId}. The sender owns the memory, scoped per platform. For apps with a shared identity, such as single sign-on (SSO), this splits memory: the same user gets feishu:user_123 in a Feishu DM but user_123 on the web.

Pass resolveResourceId to decide memory ownership separately from the sender. It runs only when a new thread is created. Reused threads keep their stored resourceId and never call the hook, so existing conversations don't depend on the resolver being available. Return ctx.defaultResourceId to fall back to the built-in behavior.

src/mastra/agents/sso-agent.ts
import { Agent } from '@mastra/core/agent'
import { createSlackAdapter } from '@chat-adapter/slack'

const agent = new Agent({
id: 'sso-agent',
name: 'SSO Agent',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
slack: createSlackAdapter(),
},
resolveResourceId: async ({ thread, message }) => {
// DM: share resource-level memory with the web app by using the bare SSO id
if (thread.isDM) {
return await resolveSsoUserId(message)
}
// Group chat: the conversation owns the memory; the sender stays the actor
return thread.channelId
},
},
})

The ResolveResourceIdContext passed to the function:

platform:

string
Platform name (e.g. slack, discord).

thread:

Thread
The channel thread the message arrived on. Use thread.isDM to tell DMs apart from group/channel threads.

message:

Message
The incoming message. message.author.userId is the actor/sender, not necessarily the memory owner.

defaultResourceId:

string
The built-in default (${platform}:${message.author.userId}). Return this to keep the current behavior.

Thread ID resolution
Direct link to Thread ID resolution

By default a new channel thread gets a random UUID as its internal Mastra thread id. Pass resolveThreadId to pick the id yourself: for example, give the thread the same id as the session it belongs to, matching how your app names threads it creates itself.

The hook runs after resolveResourceId, so the resolved owner is available on the context. Like resolveResourceId it runs only when a new thread is created: reused threads keep their stored id and never call the hook. The returned id must be unique across the memory store. If it already belongs to an existing thread, Mastra logs a warning and uses a generated id instead so the existing thread is never overwritten. Return ctx.defaultThreadId to keep the built-in behavior.

src/mastra/agents/session-agent.ts
import { Agent } from '@mastra/core/agent'
import { createSlackAdapter } from '@chat-adapter/slack'

const agent = new Agent({
id: 'session-agent',
name: 'Session Agent',
instructions: '...',
model: 'openai/gpt-5.6-sol',
channels: {
adapters: {
slack: createSlackAdapter(),
},
// Owner: a session id resolved from the sender's linked account
resolveResourceId: async ctx => resolveSessionId(ctx),
// Thread id: align with the session id so app URLs that address
// threads by session id resolve channel-created threads too
resolveThreadId: ({ resourceId, defaultThreadId }) => {
return isSessionId(resourceId) ? resourceId : defaultThreadId
},
},
})

The ResolveThreadIdContext passed to the function:

platform:

string
Platform name (e.g. slack, discord).

thread:

Thread
The channel thread the message arrived on. Use thread.isDM to tell DMs apart from group/channel threads.

message:

Message
The incoming message.

resourceId:

string
The resolved memory resourceId the new thread will belong to (after resolveResourceId).

defaultThreadId:

string
The built-in default (a random UUID). Return this to keep the current behavior.

Inline media
Direct link to Inline media

Controls which attachment types (images, video, PDFs, etc.) are sent as file parts to the model. Types that don't match are described as text summaries so the agent knows about the file without crashing models that reject unsupported types.

The default (['image/png', 'image/jpeg', 'image/webp', 'application/pdf']) matches the formats supported by major vision models. Override inlineMedia to expand the list (e.g. ['image/*', 'audio/*']) or replace it entirely with a predicate function.

Supported glob patterns:

PatternMatches
image/*All image types (image/png, image/jpeg, etc.)
video/*All video types
* or */*All types
application/pdfExact type match

For platforms with private CDNs (e.g. Slack), attachments are fetched with authenticated credentials from the Chat SDK. For platforms with public CDNs (e.g. Discord), the URL is passed directly to the model.

Promotes URLs found in message text to file parts so the model can process linked content instead of seeing raw URL text. Each entry can be a string (domain pattern) or an object with a forced mime type.

String entries match a domain and perform a HEAD request to detect the Content-Type. The resolved type is checked against inlineMedia and only matching types become file parts.

Object entries match a domain and force a specific mime type, skipping the HEAD request and bypassing the inlineMedia check. This is useful for sites like YouTube where a HEAD request returns text/html, but the model treats the URL as video content.

type InlineLinkEntry =
| string // Domain pattern (HEAD determines mime type)
| { match: string; mimeType: string } // Domain + forced mime type (skips HEAD)