Skip to main content
Glama

discord_get_forum_post

Read-only

Retrieve a Discord forum post's title, archived/locked state, applied tags, message count, and recent messages (oldest-to-newest) by providing its thread ID.

Instructions

Get a forum post's details (title, archived/locked state, applied tags, message count) plus its recent messages, oldest-to-newest. Read-only. Pass the post's thread_id. Returns a JSON object.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoHow many recent messages to include (1–100). Default 20.
thread_idYesID (snowflake) of the forum post (thread).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameYes
lockedYes
archivedYes
messagesYes
createdAtYes
appliedTagsYes
messageCountYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.2.0
    • addedInput schema / additionalProperties
      Added value: +false
  2. Changed6 schema fields changedv2.0.0
    • addedInput schema / properties / limit / default
      Added value: +20
    • addedInput schema / properties / limit / maximum
      Added value: +100
    • addedInput schema / properties / limit / minimum
      Added value: +1
    • changedInput schema / properties / limit / type
      Previous value: -"number"New value: +"integer"
    • addedInput schema / properties / thread_id / pattern
      Added value: +"^\\d{17,20}$"
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "additionalProperties": false,
      +  "properties": {
      +    "appliedTags": {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "archived": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "createdAt": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "locked": {
      +      "anyOf": [
      +        {
      +          "type": "boolean"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "messageCount": {
      +      "anyOf": [
      +        {
      +          "type": "number"
      +        },
      +        {
      +          "type": "null"
      +        }
      +      ]
      +    },
      +    "messages": {
      +      "items": {
      +        "additionalProperties": false,
      +        "properties": {
      +          "author": {
      +            "type": "string"
      +          },
      +          "content": {
      +            "type": "string"
      +          },
      +          "id": {
      +            "type": "string"
      +          },
      +          "timestamp": {
      +            "type": "string"
      +          }
      +        },
      +        "required": [
      +          "id",
      +          "author",
      +          "content",
      +          "timestamp"
      +        ],
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "name": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "name",
      +    "archived",
      +    "locked",
      +    "messageCount",
      +    "appliedTags",
      +    "createdAt",
      +    "messages"
      +  ],
      +  "type": "object"
      +}
  3. Changed2 schema fields changedv1.6.0
    • changedInput schema / properties / limit / description
      Previous value: -"Number of messages to fetch (1–100, default 20)."New value: +"How many recent messages to include (1–100). Default 20."
    • addedInput schema / properties / thread_id / description
      Added value: +"ID (snowflake) of the forum post (thread)."
  4. Addedv1.5.0
  5. Removedv1.0.0
  6. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true and the description reinforces it with 'Read-only' — no contradiction. It adds value beyond the annotations by disclosing the return shape (specific detail fields plus messages), the ordering behavior (oldest-to-newest), and that the result is a JSON object. It does not address edge behaviors like empty threads, but the output schema covers the return contract.

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?

Four short sentences, all load-bearing: purpose with an itemized payload, ordering behavior, read-only safety, required input, and return type. Front-loaded with verb and resource; zero filler or redundancy.

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?

For a 2-parameter read tool with an output schema, the description covers what it returns, what input is required, and its safety profile. An agent can invoke it correctly with only thread_id, and the limit constraints live in the schema. Nothing material needed for correct invocation is missing.

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% — both thread_id and limit already have descriptions covering the snowflake pattern, constraints, and default, so the baseline is 3. The description adds only marginal reinforcement by telling the agent to pass thread_id and linking 'recent messages' to the limit parameter; it does not carry the semantic burden.

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?

States a specific verb ('Get'), a precise resource ('a forum post's details'), and itemizes the payload (title, archived/locked state, applied tags, message count, recent messages oldest-to-newest). This distinguishes it from sibling getters like discord_read_messages (general message reads) and discord_list_forum_threads (listing threads rather than fetching one post's details).

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

Usage Guidelines4/5

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

The description makes the use case clear — pull details plus recent messages for a single forum post — and gives a concrete invocation instruction ('Pass the post's thread_id') along with the 'Read-only' framing so an agent knows this is a safe fetch. It does not explicitly name alternatives or state when-not-to-use conditions, which keeps it just short of a 5.

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