slack_post_message
Send messages to Slack channels or direct messages using channel ID and text content. This tool enables automated communication within Slack workspaces through API integration.
Instructions
Post a new message to a Slack channel or direct message to user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The ID of the channel or user to post to | |
text | Yes | The message text to post |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "The ID of the channel or user to post to",
"type": "string"
},
"text": {
"description": "The message text to post",
"type": "string"
}
},
"required": [
"channel_id",
"text"
],
"type": "object"
}