Skip to main content
Glama
atmosphere-ai

AdvisorPPC X Organic

Hide or unhide a reply

x_organic_hide_reply

Hide or unhide a reply in a conversation you own, with explicit confirmation required for policy-safe moderation.

Instructions

PUT /2/tweets/:id/hidden. Only works for replies on a conversation you own. Requires confirm=true. Scope tweet.moderate.write. hidden=true hides, false unhides.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hiddenYestrue to hide, false to unhide
confirmNoMust be true after the user explicitly named this action. Never set on your own.
reply_idYesId of the reply to hide/unhide, not the root post

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the readOnlyHint=false and openWorldHint=true annotations, the description adds the HTTP endpoint, the ownership restriction, the required confirm flag, and the OAuth scope. This gives an agent the necessary behavioral context 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?

Four short, dense clauses deliver the HTTP method, path, ownership constraint, confirm requirement, scope, and parameter semantics with zero filler. The most important usage restriction is front-loaded.

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 mutating tool with no output schema, the description is nearly complete: it covers the endpoint, prerequisites, ownership, scope, and parameter behavior. The only gap is that it does not describe the expected response or common error conditions, but these are not essential for invoking the tool.

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 baseline is 3üssig. The description adds value by framing reply_id as the :id in the path and tying it to the 'reply on a conversation you own' rule. It also reinforces the hidden boolean semantics, complementing rather than merely repeating the schema.

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?

Title and description both clearly state the action: hide or unhide a reply. The description explicitly maps hidden=true to hide and false to unhide, and the verb-resource pair is unambiguous. None of the siblings overlap with this hide/unhide semantics, so it stands apart.

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 states clear usage context: it only works for replies on a conversation you own, and it requires confirm=true and scope tweet.moderate.write. It does not explicitly name alternatives or say when not to use it, but the ownership limitation effectively scopes it.

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