list_mentionable_assets
List assets that can be referenced via `{{assetMention:UUID}}` tokens in a message in this chat.
Read-only tool.
List assets that can be referenced via {{assetMention:UUID}} tokens in a message in this chat. Use this BEFORE send_message when composing a message that should embed asset chips — it filters by what the chat's scope can see, so the resulting message won't reference an asset the readers cannot access.
Input
| Property | Type | Required | Description |
|---|---|---|---|
chatId | string | yes | UUID of the chat the message will be posted in. |
search | string | no | Case-insensitive substring match on asset name. |
limit | number | no | Page size (1-50, default 20). min 1. max 50 |
JSON Schema
{
"type": "object",
"properties": {
"chatId": {
"type": "string",
"description": "UUID of the chat the message will be posted in."
},
"search": {
"type": "string",
"description": "Case-insensitive substring match on asset name."
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Page size (1-50, default 20)."
}
},
"required": [
"chatId"
],
"additionalProperties": false
}