mattermost_set_default
Set a specified channel as the default webhook for sending messages through the Mattermost MCP server, ensuring consistent message routing to your preferred channel.
Instructions
지정한 채널을 기본 웹훅으로 설정합니다.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | 기본으로 설정할 채널명 |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "기본으로 설정할 채널명",
"type": "string"
}
},
"required": [
"channel"
],
"type": "object"
}