Twitter MCP Server

replyToTweet

Reply to a tweet

Input Schema

NameRequiredDescriptionDefault
textYesThe text of the reply
tweetIdYesThe 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" }