send_slack_message
Post a reply to a Slack channel or thread and get back a timestamp, so the same message can later be updated in place instead of reposting.
Instructions
Send a message to a Slack channel. Use this to reply to webhook channel incoming messages from Slack. Returns the message timestamp (ts) — pass it to update_slack_message to rewrite this message later, which is how a progress or "working on it" marker is kept to one line instead of many.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The reply, written as ordinary markdown. It is converted to Slack formatting for you — write **bold**, `code`, fenced blocks and [links](url) normally. A message over Slack's length limit is split across several posts rather than truncated. | |
| channel | Yes | The Slack channel ID to send the message to (e.g. C0AMZUV0JTZ) | |
| thread_ts | No | Reply inside a thread. Pass the thread_ts from the incoming message so the answer sits under the question instead of at the top of the channel. Omit only when starting a new topic. |