post_message
Send messages to Slack channels to communicate updates, share information, or coordinate team activities directly from the MCP server.
Instructions
Post a message to a Slack channel.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | ||
| text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"title": "Channel Id",
"type": "string"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"channel_id",
"text"
],
"type": "object"
}