X MCP Server
by DataWhisker
reply_to_tweet
Reply to a tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text content of the reply | |
tweet_id | Yes | The ID of the tweet to reply to |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text content of the reply",
"maxLength": 280,
"type": "string"
},
"tweet_id": {
"description": "The ID of the tweet to reply to",
"type": "string"
}
},
"required": [
"tweet_id",
"text"
],
"type": "object"
}