Skip to main content
Glama

discord_reply_to_forum

Post a follow-up reply inside an existing Discord forum post (thread). Requires Send Messages in Threads permission. Use create_forum_post to start a new post instead. Returns the new message ID.

Instructions

Post a follow-up message inside an existing forum post (thread). Requires the Send Messages in Threads permission (shown as 'Send Messages in Posts' for forums). Use discord_create_forum_post to start a new post instead. Returns the new message ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesPlain-text body of the reply (max 2000 characters).
thread_idYesID (snowflake) of the forum post (thread) to reply in.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.2.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. Changed1 schema field changedv2.0.0
    • addedInput schema / properties / thread_id / pattern
      Added value: +"^\\d{17,20}$"
  3. Changed2 schema fields changedv1.6.0
    • addedInput schema / properties / content / description
      Added value: +"Plain-text body of the reply (max 2000 characters)."
    • addedInput schema / properties / thread_id / description
      Added value: +"ID (snowflake) of the forum post (thread) to reply in."
  4. Addedv1.5.0
  5. Removedv1.0.0
  6. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate a write operation (readOnlyHint=false), but the description adds useful context beyond that: the required 'Send Messages in Threads' permission and the fact that the tool 'Returns the new message ID'. This enriches the agent's understanding without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three targeted sentences carry the action, permission requirement, alternative, and return value without redundancy. It opens with the core purpose and every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, both required parameters are fully documented in the schema, annotations cover the write nature, and the description provides the missing return information. An agent has everything needed to select and invoke this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and both parameters already have clear descriptions in the schema: content is a max-2000-character plain-text body, and thread_id is the snowflake ID of the forum post. The description adds no extra parameter-level meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: 'Post a follow-up message inside an existing forum post (thread)', identifying both a specific verb and resource. It also distinguishes itself from discord_create_forum_post by explicitly saying that tool is for starting a new post instead.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit when-to-use context: 'inside an existing forum post'. It also names the alternative, discord_create_forum_post, and tells the agent to use that instead when starting a new post. The permission requirement further clarifies the conditions under which this tool can be used.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools