replyToTweet
Post a reply to a specific tweet on Twitter by providing the tweet ID and your response text using this Model Context Protocol tool.
Instructions
Reply to a tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text of the reply | |
tweetId | Yes | The ID of the tweet to reply to |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text of the reply",
"type": "string"
},
"tweetId": {
"description": "The ID of the tweet to reply to",
"type": "string"
}
},
"required": [
"tweetId",
"text"
],
"type": "object"
}