discord_delete_forum_post
Remove a Discord forum post or thread by specifying the thread ID and an optional deletion reason. Part of the MCP-Discord server’s toolkit for managing forum interactions.
Instructions
Deletes a forum post or thread with an optional reason
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reason | No | ||
threadId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"reason": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"threadId"
],
"type": "object"
}