Skip to main content
Glama
WhyFaust

Faust Threads MCP

by WhyFaust

threads_publish_reply

Publish a reply to a specific Threads post, requiring explicit environment enablement and an author approval receipt.

Instructions

Publish a reply only with explicit environment enablement and author approval receipt.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYes
user_idYes
reply_to_idYes
approval_receiptYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does reveal a non-obvious gating condition: publishing requires environment enablement and an author approval receipt. However, it does not explain what happens if these are missing, what side effects occur, or what authorization or environment setup is required.

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?

The description is a single sentence with no filler and gets to the point quickly. It is concise and front-loaded with the core action, though the ambiguous 'environment enablement' wording could be clearer without adding much length.

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?

Given four required parameters, a nested object, no output schema, and no annotations, the description is under-specified. It leaves unanswered what approval_receipt should look like, what 'environment enablement' means, how the reply relates to reply_to_id, and what the tool returns. These are material gaps for a mutation-like publishing tool.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not compensate. It only echoes the concept of an approval receipt, but it does not explain the required structure of approval_receipt or the meaning of user_id, reply_to_id, and text. An agent cannot learn how to construct a valid invocation from this description.

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?

The description clearly states the action and object: 'Publish a reply.' This distinguishes it from the sibling threads_publish_post and the read-only insight tools. However, the phrase 'explicit environment enablement' is vague and not explained, keeping it from being a fully clear purpose statement.

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?

The description gives a precondition ('only with explicit environment enablement and author approval receipt') but no guidance on when to choose this tool over threads_publish_post or how to determine eligibility. It does not mention alternatives, exclusions, or expected workflow context, leaving usage largely inferred from the tool name and siblings.

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