discord_reply_to_forum
Send messages in Discord forum threads to participate in discussions or provide responses within organized community conversations.
Instructions
Reply to a forum post (send a message in a forum thread).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | ||
| content | Yes |
Implementation Reference
- src/tools/forums.ts:256-260 (handler)The handler implementation for the `discord_reply_to_forum` tool, which fetches the thread by ID and sends a reply using `thread.send`.
case "discord_reply_to_forum": { const thread = await getThreadChannel(args.thread_id as string); const sent = await thread.send(args.content as string); return { content: [{ type: "text", text: `✅ Reply sent (id: ${sent.id}) in thread "${thread.name}".` }] }; } - src/tools/forums.ts:74-84 (schema)The schema definition for `discord_reply_to_forum`, specifying the input parameters `thread_id` and `content`.
name: "discord_reply_to_forum", description: "Reply to a forum post (send a message in a forum thread).", inputSchema: { type: "object", properties: { thread_id: { type: "string" }, content: { type: "string" }, }, required: ["thread_id", "content"], }, },