Skip to main content
Glama

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
NameRequiredDescriptionDefault
thread_idYes
contentYes

Implementation Reference

  • 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}".` }] };
    }
  • 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"],
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PaSympa/discord-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server