mcp-twikit

get_user_tweets

Get tweets from a specific user's timeline.

Args: username: Twitter username (with or without @) tweet_type: Type of tweets to retrieve - 'Tweets', 'Replies', 'Media', or 'Likes' count: Number of tweets to retrieve (default 10)

Input Schema

NameRequiredDescriptionDefault
countNo
tweet_typeNoTweets
usernameYes

Input Schema (JSON Schema)

{ "properties": { "count": { "default": 10, "title": "Count", "type": "integer" }, "tweet_type": { "default": "Tweets", "title": "Tweet Type", "type": "string" }, "username": { "title": "Username", "type": "string" } }, "required": [ "username" ], "title": "get_user_tweetsArguments", "type": "object" }