Skip to main content
Glama
jackleeio

bnbot-mcp-server

by jackleeio

submit_reply

Post a reply to a specific tweet using a provided tweet URL or the currently open tweet, with optional image attachment.

Instructions

Reply to a specific tweet. Navigate to the tweet first or provide the tweet URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesReply text content
imageNoImage URL to attach to the reply
tweetUrlNoURL of the tweet to reply to. If omitted, replies to the currently open tweet.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

TDQS

B3.3/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 behavioral burden for a mutation tool. It discloses the navigation prerequisite but says nothing about authentication needs, rate limits, whether the reply is immediately public, or what happens on failure.

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 with zero padding; the core action is front-loaded and the prerequisite follows immediately. Every word earns its place.

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

Completeness3/5

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

For a write tool with no annotations and no output schema, the description covers the key prerequisite but omits behavioral details an agent would need, such as auth requirements and confirmation of success. Adequate but with clear gaps.

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%, so the baseline is 3. The description reinforces that tweetUrl is optional by offering the 'navigate first' path, but adds no format or syntax detail beyond the schema's own parameter descriptions.

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 and resource ('Reply to a specific tweet'), which clearly separates it from siblings like post_tweet and quote_tweet. It does not explicitly name those alternatives, so it stops short of full sibling differentiation.

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

Usage Guidelines3/5

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

Gives an implicit usage condition: be on the tweet or supply its URL. It does not state when to prefer submit_reply over quote_tweet or post_tweet, nor any restrictive conditions, so guidance is implied rather than explicit.

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