Slack
get_channel_history_on_slack
Get recent messages from a channel. Provide either channel_id or channel_name.
Remote KaranThink41/official-slack-mcp
Other tools also called get_channel_history_on_slack?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 10,
"description": "Number of messages to retrieve (default 10)"
},
"channel_id": {
"type": "string",
"description": "The ID of the channel."
},
"channel_name": {
"type": "string",
"description": "The name of the channel (will be resolved to channel_id if channel_id is not provided)."
}
}
}