send_message
Send messages to Slack channels or reply to threads using channel ID and message text for team communication and collaboration.
Instructions
Send a message to a channel
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | Channel ID | |
| text | Yes | Message text | |
| thread_ts | No | Optional thread timestamp to reply to |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "Channel ID",
"type": "string"
},
"text": {
"description": "Message text",
"type": "string"
},
"thread_ts": {
"description": "Optional thread timestamp to reply to",
"type": "string"
}
},
"required": [
"channel",
"text"
],
"type": "object"
}