slack_channel_history
ActiveTool of Slack_connect
declared in 0.1.0
Get message history from a Slack channel. Bot auto-joins the channel if needed.
Parameters schema
{
"type": "object",
"examples": [
{
"limit": 20,
"channel": "C01234ABCDE"
},
{
"limit": 100,
"oldest": "1609459200",
"channel": "C01234ABCDE"
}
],
"required": [
"channel"
],
"properties": {
"limit": {
"type": "number",
"description": "Max number of messages to return (default 20, max 1000)"
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page of results"
},
"latest": {
"type": "string",
"description": "Only messages before this Unix timestamp"
},
"oldest": {
"type": "string",
"description": "Only messages after this Unix timestamp"
},
"channel": {
"type": "string",
"description": "Channel ID (e.g., \"C01234ABCDE\")"
}
}
}Parent server
Slack_connect
https://github.com/pipeworx-io/mcp-slack_connect
1/7 registries