Twitter MCP Server

getTweetById

Get a tweet by its ID

Input Schema

NameRequiredDescriptionDefault
tweetFieldsNoFields to include in the tweet object
tweetIdYesThe ID of the tweet

Input Schema (JSON Schema)

{ "properties": { "tweetFields": { "description": "Fields to include in the tweet object", "items": { "type": "string" }, "type": "array" }, "tweetId": { "description": "The ID of the tweet", "type": "string" } }, "required": [ "tweetId" ], "type": "object" }