mcpmessage_thread
Retrieve the entire conversation thread by providing any message ID. Get ordered messages, thread ID, and count, solving the problem of tracing message exchanges.
Instructions
Return the full thread a message belongs to, in order.
Follow a conversation across replies: pass any message id from the thread (the root send or any reply) and get every exchanged message back.
Args: message_id: Id of any message in the thread.
Returns: JSON {"thread_id": str, "count": int, "messages": [message...]}, or an "Error: ..." string when the message does not exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |