get_my_mentions
Retrieve recent messages where you were mentioned in Microsoft Teams channels or chats within a specified time frame and scope.
Instructions
Find all recent messages where the current user was mentioned (@mentioned) across Teams channels and chats.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hours | No | Get mentions from the last N hours | |
limit | No | Maximum number of mentions to return | |
scope | No | Scope of search | all |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hours": {
"default": 24,
"description": "Get mentions from the last N hours",
"maximum": 168,
"minimum": 1,
"type": "number"
},
"limit": {
"default": 20,
"description": "Maximum number of mentions to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"scope": {
"default": "all",
"description": "Scope of search",
"enum": [
"all",
"channels",
"chats"
],
"type": "string"
}
},
"type": "object"
}