slack_get_channel_history
Retrieve all messages from a Slack channel in chronological order with pagination support. Get the complete conversation flow including bot messages.
Instructions
Get messages from a channel in chronological order. Use this when: 1) You need the latest conversation flow without specific filters, 2) You want ALL messages including bot/automation messages, 3) You need to browse messages sequentially with pagination. Do NOT use if you have specific search criteria (user, keywords, dates) - use slack_search_messages instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | The ID of the channel. Use this tool for: browsing latest messages without filters, getting ALL messages including bot/automation messages, sequential pagination. If you need to search by user, keywords, or dates, use slack_search_messages instead. | |
| cursor | No | Pagination cursor for next page of results | |
| limit | No | Number of messages to retrieve (default 100) |