list_my_mentions
List chat messages that mention the calling user, across every chat the user can see.
Read-only tool.
List chat messages that mention the calling user, across every chat the user can see. The most natural trigger feed for "what have I been asked?". Sorted newest-first by the API. Each result includes the chat + message context.
Input
| Property | Type | Required | Description |
|---|---|---|---|
limit | number | no | Page size (1-50, default 20). min 1. max 50 |
JSON Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Page size (1-50, default 20)."
}
},
"additionalProperties": false
}