Skip to main content
Glama
msaeedsakib

threadr-mcp

by msaeedsakib

reply_to_post

Add a top-level comment to a Reddit post using threadr-mcp. Requires user authentication and a valid post_id with comment content.

Instructions

Add a top-level comment to a post (requires user auth)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYes
post_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

C2.9/5.0
Behavior2/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 user auth is required, which is useful, but does not describe whether the comment is immediately visible, whether it can be deleted, or other behavioral traits. For a mutation tool with no annotations, this is a notable gap.

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

Conciseness4/5

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

One efficient sentence with the core action and constraint front-loaded. No wasted words.

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

Completeness2/5

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

No output schema, no annotations, and 0% schema description coverage. The description is minimal and doesn't cover important details like return value, visibility, or editing/deletion implications. For a mutation tool, more context is expected.

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 description coverage is 0%, so the schema provides no semantic info for the two parameters (post_id, content). The description does not explain these parameters beyond their names, but with only two required parameters and low complexity, a baseline 3 is appropriate.

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

Purpose4/5

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

States a specific verb (add) and resource (top-level comment to a post), clearly distinguishing it from reply_to_comment (which adds replies to comments). The parenthetical notes it's top-level, which differentiates from nested replies.

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

Usage Guidelines2/5

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

No guidance on when to use this vs reply_to_comment or create_post. The auth requirement is noted, but there's no explicit when/when-not or alternatives mentioned.

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