Nurama Developers

list_mentionable_folders

List folders the caller can `{{folderMention:UUID}}` in this chat — already scope-filtered to the chat's visibility tier.

Read-only tool.

List folders the caller can {{folderMention:UUID}} in this chat — already scope-filtered to the chat's visibility tier. Use BEFORE send_message / revise_message when the message references a folder, so the mention renders as a clickable token instead of plain text.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the chat the mention will be posted in.
limitnumbernoPage size (1-50, default 20). min 1. max 50
searchstringnoOptional substring match on folder name.

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the chat the mention will be posted in."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Page size (1-50, default 20)."
    },
    "search": {
      "type": "string",
      "description": "Optional substring match on folder name."
    }
  },
  "required": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page