Nurama Developers

list_chat_messages

List recent messages in a chat, newest first.

Read-only tool.

List recent messages in a chat, newest first. Use this to read context before composing a reply, to summarise a discussion, or to find the messageId for a follow-up tool. Default cap is 20 messages; raise only when summarising long threads.

Input

PropertyTypeRequiredDescription
chatIdstringyesUUID of the chat to read.
limitnumbernoNumber of messages (1-50, default 20). min 1. max 50
excludeRepliesbooleannoWhen true, skip threaded replies and return only top-level messages. Default true.

JSON Schema

{
  "type": "object",
  "properties": {
    "chatId": {
      "type": "string",
      "description": "UUID of the chat to read."
    },
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 50,
      "description": "Number of messages (1-50, default 20)."
    },
    "excludeReplies": {
      "type": "boolean",
      "description": "When true, skip threaded replies and return only top-level messages. Default true."
    }
  },
  "required": [
    "chatId"
  ],
  "additionalProperties": false
}

On this page