getRetweets
Retrieve a list of retweets for a specific tweet, including custom user details like profile metrics and verification status, using the Twitter MCP Server.
Instructions
Get a list of retweets of a tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
maxResults | No | The maximum number of results to return (default: 100, max: 100) | |
tweetId | Yes | The ID of the tweet to get retweets for | |
userFields | No | Additional user fields to include in the response |
Input Schema (JSON Schema)
{
"properties": {
"maxResults": {
"description": "The maximum number of results to return (default: 100, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"tweetId": {
"description": "The ID of the tweet to get retweets for",
"type": "string"
},
"userFields": {
"description": "Additional user fields to include in the response",
"items": {
"enum": [
"description",
"profile_image_url",
"public_metrics",
"verified"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"tweetId"
],
"type": "object"
}