Enables interaction with Twitter through a Model Context Protocol, allowing large language models to post tweets, search for tweets, and reply to tweets.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Post a new tweet. Parameters: text (string) - Your tweet text here.
Post a tweet with media attachment. Parameters: text (string), mediaPath (string) - path to media file, mediaType (string) - image/jpeg|image/png|image/gif|video/mp4, altText (string) - Optional alt text for accessibility.
Get a specific tweet by ID. Parameters: tweetId (string) - tweet id, tweetFields (array) - fields to return such as created_at and public_metrics.
Reply to an existing tweet. Parameters: tweetId (string) - tweet id, text (string) - Your reply text.
Delete a tweet. Parameters: tweetId (string) - tweet id.
Search for tweets. Parameters: query (string) - search query, maxResults (integer) - maximum results to return, tweetFields (array) - fields to return such as created_at and public_metrics.
Get analytics for a hashtag. Parameters: hashtag (string) - hashtag to analyze, startTime (string) - ISO-8601 date, endTime (string) - ISO-8601 date.
Get user information. Parameters: username (string) - Twitter username, fields (array) - fields to return such as description and public_metrics.
Get user's tweets. Parameters: username (string) - Twitter username, maxResults (integer) - maximum results to return, tweetFields (array) - fields to return such as created_at and public_metrics.
Get user's followers. Parameters: username (string) - Twitter username, maxResults (integer) - maximum results to return, userFields (array) - fields to return such as description and public_metrics.
Get accounts a user follows. Parameters: username (string) - Twitter username, maxResults (integer) - maximum results to return, userFields (array) - fields to return such as description and public_metrics.
Like a tweet. Parameters: tweetId (string) - tweet id.
Unlike a tweet. Parameters: tweetId (string) - tweet id.
Retweet a tweet. Parameters: tweetId (string) - tweet id.
Undo a retweet. Parameters: tweetId (string) - tweet id.
Get users who retweeted a tweet. Parameters: tweetId (string) - tweet id, maxResults (integer) - maximum results to return, userFields (array) - fields to return such as description and public_metrics.
Get tweets liked by a user. Parameters: userId (string) - user id, maxResults (integer) - maximum results to return, tweetFields (array) - fields to return such as created_at and public_metrics.
Create a new list. Parameters: name (string) - List name, description (string) - List description, isPrivate (boolean) - whether the list is private.
Add a user to a list. Parameters: listId (string) - list id, username (string) - Twitter username.
Remove a user from a list. Parameters: listId (string) - list id, username (string) - Twitter username.
Get members of a list. Parameters: listId (string) - list id, maxResults (integer) - maximum results to return, userFields (array) - fields to return such as description and public_metrics.