discord_create_forum_post
Generate and publish a new post in a Discord forum channel, including a title, content, and optional tags, using the MCP-Discord server for streamlined communication.
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"
}