mattermost_send_message
Send messages to Mattermost channels using webhooks. Configure multiple channels via YAML and integrate with Claude Desktop to post notifications and updates directly to your team communication platform.
Instructions
기본 또는 지정한 채널 웹훅으로 메시지를 전송합니다.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | No | 메시지를 보낼 채널명 (선택) | |
text | Yes | 전송할 메시지 텍스트 |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "메시지를 보낼 채널명 (선택)",
"type": "string"
},
"text": {
"description": "전송할 메시지 텍스트",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}