Microsoft Teams Notifications¶
Send rich Adaptive Card notifications to Microsoft Teams channels.
Quick Setup¶
1. Create an Incoming Webhook¶
- In Teams, go to the channel you want notifications in
- Click ⋯ (More options) → Connectors
- Find Incoming Webhook and click Configure
- Name it "MCP Watch" and optionally upload an image
- Click Create and copy the webhook URL
2. Create Subscription¶
Configuration Options¶
| Option | Type | Required | Description |
|---|---|---|---|
webhook_url | string | ✅ | Teams incoming webhook URL |
Message Format¶
Teams notifications use Adaptive Cards:
JSON
{
"type": "message",
"attachments": [{
"contentType": "application/vnd.microsoft.card.adaptive",
"content": {
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"size": "Large",
"weight": "Bolder",
"text": "🆕 New MCP Server Added"
},
{
"type": "FactSet",
"facts": [
{ "title": "Server", "value": "awesome-database-tool" },
{ "title": "Version", "value": "1.2.0" },
{ "title": "License", "value": "MIT" }
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View in Registry",
"url": "https://registry.modelcontextprotocol.io"
}
]
}
}]
}
Rate Limits¶
- 30 messages per minute per webhook
- Automatic retry with backoff
Troubleshooting¶
Webhook not working?
- Verify URL starts with
https://outlook.office.com/webhook/ - Check the connector hasn't been removed
- Ensure you have permission to add connectors
Cards not rendering?
Teams has Adaptive Card limitations:
- Maximum card size: 28 KB
- Use version 1.4 or lower for compatibility