Skip to main content
Glama
lmtNoLimit

mcp-facebook

by lmtNoLimit

facebook_hide_comment

Hide or unhide a comment on a Facebook Page post to control public visibility; hidden comments remain visible only to the commenter.

Instructions

Hide or unhide a comment on a Facebook Page post. Hidden comments are still visible to the commenter but not to others.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hideYesSet to true to hide the comment, false to unhide it
comment_idYesThe comment ID to hide or unhide

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does add real behavioral value by explaining the hidden-state semantics ('still visible to the commenter but not to others'). However, it omits permission requirements, any rate/scope limits, and what happens on failure for an already-hidden comment.

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?

Two tight sentences, front-loaded with the action and followed by the one piece of consequential context. Nothing is wasted and no filler is present.

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 simple two-parameter toggle with no output schema, the description covers the action and the visibility side-effect well. It lacks any note on required permissions or authentication, which is the main remaining gap.

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% and both parameters are documented in the schema ('hide' as a boolean toggle, 'comment_id' as the target). The description adds no further parameter detail, so the baseline of 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?

The description gives a specific verb pair and resource ('Hide or unhide a comment on a Facebook Page post'), making the operation immediately clear. It distinguishes itself implicitly from siblings like facebook_reply_comment and facebook_delete_post, but names no sibling explicitly to route the agent.

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?

There is no guidance on when to choose this over alternatives (e.g., delete vs hide vs reply), nor any prerequisites such as page-admin permissions or moderation context. The agent must infer all usage conditions from the name alone.

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