Slack
get_channel_messages_on_slack
Fetch the last N messages from a Slack channel (by channel_id or channel_name).
Remote KaranThink41/official-slack-mcp
Other tools also called get_channel_messages_on_slack?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 5,
"description": "Number of messages to fetch (default 5)"
},
"channel_id": {
"type": "string",
"description": "The ID of the channel to fetch messages from."
},
"channel_name": {
"type": "string",
"description": "The name of the channel to fetch messages from."
}
}
}