Slack MCP Server

slack_reply_to_thread

Reply to a specific message thread in Slack

Input Schema

NameRequiredDescriptionDefault
channel_idYesThe ID of the channel containing the thread
textYesThe reply text
thread_tsYesThe timestamp of the parent message

Input Schema (JSON Schema)

{ "properties": { "channel_id": { "description": "The ID of the channel containing the thread", "type": "string" }, "text": { "description": "The reply text", "type": "string" }, "thread_ts": { "description": "The timestamp of the parent message", "type": "string" } }, "required": [ "channel_id", "thread_ts", "text" ], "type": "object" }