get_recent_slack_messages
Retrieve recent messages from a Slack channel to monitor conversations, track updates, and stay informed about team discussions.
Instructions
Fetch recent messages from a Slack channel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ||
| limit | No |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"title": "Channel Id",
"type": "string"
},
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
}
},
"required": [
"channel_id"
],
"type": "object"
}