Connect your Idun agent to Microsoft Teams so users can interact with it through @mentions and direct messages. The integration is single-tenant: each deployment registers its own Microsoft app in its own Azure AD and runs its own engine against it.Documentation Index
Fetch the complete documentation index at: https://docs.idun-group.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- A running Idun agent (engine)
- An Azure tenant where you can register an application
- Your engine must be publicly reachable (use ngrok or Bot Framework’s tunnel for local development)
Setup
- Admin UI
- Config file
Open the integrations admin page
Navigate to
/admin/integrations/ in the running standalone. The channel catalog shows WhatsApp, Discord, Google Chat, Slack, and Microsoft Teams as active channels.Create the Teams integration
Click Microsoft Teams and fill in the credentials from your Azure AD app registration.

| Field | Value |
|---|---|
app_id | Microsoft App ID (the Application/Client ID from the Azure AD app registration) |
app_password | Client secret from the Azure AD app registration |
app_tenant_id | Azure AD tenant ID that owns the app registration |

How it works
- User sends a message in Teams (DM or @mention in a channel)
- Bot Framework POSTs the activity to your engine’s
/integrations/teams/messageswebhook - The engine validates the Bot Framework signature against the configured tenant + app credentials
- The engine invokes the agent with the message text
- The engine sends the agent’s reply back through the Bot Framework adapter
Next steps
Slack
Connect your agent to Slack DMs and channels.
Discord
Reach the same agent through Discord slash commands.
Production hardening
Secure the engine before exposing webhooks to the public internet.