Skip to main content
Glama

hivelearn_create_discussion_reply

Reply to a discussion as the API key's owner. The reply is visible to all members immediately and notifies the discussion author. Fails with 409 if the discussion is locked. Set parent_reply_id to nest under another reply.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesDiscussion uuid
contentNoPlain-text/markdown body. Required unless content_json is given.
content_jsonNoTiptap JSON body (alternative to content)
content_formatNoDefaults to 'tiptap_json' with content_json, else 'markdown'
parent_reply_idNoReply uuid in the same discussion to nest under

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses that the reply is visible to all members immediately, notifies the discussion author, and fails with 409 if locked. It also explains the content_format default behavior. This is good behavioral disclosure for a mutation tool, though it doesn't mention reversibility or permissions.

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 sentences, each earning its place: the first states the core action and visibility, the second discloses the failure mode, the third explains the nesting parameter. No fluff, front-loaded with the primary purpose.

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

Completeness4/5

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

For a mutation tool with no annotations and no output schema, the description covers the key behavioral aspects: visibility, notification, lock failure, and nesting. It doesn't describe the response format, but the absence of an output schema makes that a minor gap. The 409 error is a valuable addition.

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

Parameters4/5

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

Schema coverage is 100%, so the schema already documents all parameters. The description adds value by explaining the relationship between content and content_json (alternative bodies), the default content_format behavior, and the purpose of parent_reply_id (nesting). This goes beyond the schema's field descriptions.

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 ('Reply to a discussion'), the actor ('as the API key's owner'), and the resource. It distinguishes this from hivelearn_create_discussion (creating a new discussion) and hivelearn_list_discussion_replies (reading replies). The verb 'Reply' is specific and unambiguous.

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 provides clear context on when to use this tool: to reply to a discussion, with the ability to nest under another reply via parent_reply_id. It doesn't explicitly name alternatives or exclusions, but the sibling list makes the distinction obvious (create_discussion vs create_discussion_reply). The 409 lock failure is a useful usage constraint.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources