discord_delete_channel
Remove Discord channels via MCP-Discord by specifying the channel ID and an optional reason for deletion, streamlining channel management tasks.
Instructions
Deletes a Discord channel with an optional reason
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channelId | Yes | ||
| reason | No |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"reason": {
"type": "string"
}
},
"required": [
"channelId"
],
"type": "object"
}