mcp-twikit
by adhikasp
get_user_tweets
Get tweets from a specific user's timeline.
Copy
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
Name | Required | Description | Default |
---|---|---|---|
count | No | ||
tweet_type | No | Tweets | |
username | Yes |
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"
}
This server cannot be installed