post_tweet
Automatically post tweets to X (Twitter) using the X MCP Server. Input tweet text and optionally reply to a specific tweet ID for streamlined social media engagement.
Instructions
Post a tweet to X (Twitter)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reply_to_tweet_id | No | Optional: ID of the tweet to reply to | |
text | Yes | The text content of the tweet (max 280 characters) |
Input Schema (JSON Schema)
{
"properties": {
"reply_to_tweet_id": {
"description": "Optional: ID of the tweet to reply to",
"type": "string"
},
"text": {
"description": "The text content of the tweet (max 280 characters)",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}