Twitter MCP Server

getTweetsByIds

Get multiple tweets by their IDs

Input Schema

NameRequiredDescriptionDefault
tweetFieldsNoAdditional tweet fields to include in the response
tweetIdsYesArray of tweet IDs to fetch

Input Schema (JSON Schema)

{ "properties": { "tweetFields": { "description": "Additional tweet fields to include in the response", "items": { "enum": [ "created_at", "author_id", "conversation_id", "public_metrics", "entities", "context_annotations" ], "type": "string" }, "type": "array" }, "tweetIds": { "description": "Array of tweet IDs to fetch", "items": { "type": "string" }, "maxItems": 100, "type": "array" } }, "required": [ "tweetIds" ], "type": "object" }