Twitter MCP Server

getLikedTweets

Get a list of tweets liked by a user

Input Schema

NameRequiredDescriptionDefault
maxResultsNoThe maximum number of results to return (default: 100, max: 100)
tweetFieldsNoAdditional tweet fields to include in the response
userIdYesThe ID of the user whose likes to fetch

Input Schema (JSON Schema)

{ "properties": { "maxResults": { "description": "The maximum number of results to return (default: 100, max: 100)", "maximum": 100, "minimum": 1, "type": "number" }, "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" }, "userId": { "description": "The ID of the user whose likes to fetch", "type": "string" } }, "required": [ "userId" ], "type": "object" }