discord_create_webhook
Create a Discord webhook to automate messages in a specific channel by providing a channel ID and webhook name using the MCP-Discord server.
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"
}