Skip to main content
Glama
jackleeio

bnbot-mcp-server

by jackleeio

post_tweet

Post a new tweet on Twitter/X with text and optional images/videos, or fill the composer without sending.

Instructions

Post a new tweet on Twitter/X. Supports text and optional images/videos.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesTweet text content (max 280 characters)
mediaNoArray of media to attach. Supports: URLs (https://...), local file paths (/path/to/file.png, ~/Downloads/video.mp4). Images: png/jpg/gif/webp. Videos: mp4/mov/webm.
draftOnlyNoIf true, fill the tweet composer but do not click send

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.2

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 behavioral burden. It says nothing about authentication, rate limits, or that posting is public and irreversible. The draftOnly parameter exists to avoid publishing, yet the description never mentions draft behavior.

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 short sentences with the core action front-loaded and no wasted words. Well sized for a simple posting tool.

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?

For a mutation tool with no annotations and no output schema, the description should disclose success/failure behavior and the publish-vs-draft distinction. It omits both, leaving an agent unable to predict the consequence of calling it.

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 100%, so the schema already documents text length, media formats, and draftOnly. The description only restates that images/videos are supported, adding no meaning beyond the schema. Baseline 3 applies.

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 (post) and resource (tweet) plus supported content types. Clear what the tool does, though it does not distinguish itself from close siblings such as post_thread, quote_tweet, or submit_reply.

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 versus post_thread, quote_tweet, or submit_reply. A tweet, a thread, a quote, and a reply are adjacent actions and the description gives no conditions for choosing among them.

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