clickup_chat_message_list
Retrieve the newest messages from a ClickUp Chat channel. Use cursor pagination to load more messages, returning an array of message objects and a next_cursor for subsequent pages.
Instructions
List messages in a ClickUp Chat channel, newest first. Only top-level messages are returned; use clickup_chat_reply_list for threaded replies. Uses v3 cursor pagination — pass the 'cursor' from the previous response to page further back. Returns an array of message objects plus a next_cursor.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ID of the channel. Obtain from clickup_chat_channel_list (field: id). | |
| cursor | No | Opaque pagination cursor from the previous response's next_cursor field. Omit for the first page (newest messages). | |
| team_id | No | Workspace (team) ID. Obtain from clickup_workspace_list (field: id). Omit to use the default workspace from config. |