discord_create_forum_post
Create a new post in a Discord forum channel with a title, content, and optional tags for organized discussions. Ideal for AI assistants or users managing forums on MCP-Discord servers.
Instructions
Creates a new post in a Discord forum channel with optional tags
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | ||
| forumChannelId | Yes | ||
| tags | No | ||
| title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"forumChannelId": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"required": [
"forumChannelId",
"title",
"content"
],
"type": "object"
}