get_replies
Load the threaded replies under one message.
Read-only tool.
Load the threaded replies under one message. list_chat_messages excludes replies by default; use this to drill into a specific thread.
Input
| Property | Type | Required | Description |
|---|---|---|---|
messageId | string | yes | UUID of the parent message. |
limit | number | no | Page size (1-50, default 20). min 1. max 50 |
JSON Schema
{
"type": "object",
"properties": {
"messageId": {
"type": "string",
"description": "UUID of the parent message."
},
"limit": {
"type": "number",
"minimum": 1,
"maximum": 50,
"description": "Page size (1-50, default 20)."
}
},
"required": [
"messageId"
],
"additionalProperties": false
}