slack_post_message
Send messages directly to a specified Slack channel using the Slack MCP Server, enabling integration with MCP clients for streamlined communication and collaboration.
Instructions
Post a new message to a Slack channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | The Channel ID to post the message to | |
text | Yes | The message text to post |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "The Channel ID to post the message to",
"type": "string"
},
"text": {
"description": "The message text to post",
"type": "string"
}
},
"required": [
"channel_id",
"text"
],
"type": "object"
}