discord_reply_to_forum
Enables posting replies to Discord forum threads by specifying the thread ID and message content for effective communication and engagement.
Instructions
Adds a reply to an existing forum post or thread
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | ||
| threadId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"type": "string"
},
"threadId": {
"type": "string"
}
},
"required": [
"threadId",
"message"
],
"type": "object"
}