discord_create_webhook
Create a new webhook for a Discord channel using the MCP-Discord server, enabling automated message delivery and integration for streamlined communication.
Instructions
Creates a new webhook for a Discord channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
avatar | No | ||
channelId | Yes | ||
name | Yes | ||
reason | No |
Input Schema (JSON Schema)
{
"properties": {
"avatar": {
"type": "string"
},
"channelId": {
"type": "string"
},
"name": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": [
"channelId",
"name"
],
"type": "object"
}