getTweetById
Retrieve specific tweet data by its unique ID from the Twitter MCP Server, enabling direct access to tweet details and selected fields for analysis or integration.
Instructions
Get a tweet by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tweetFields | No | Fields to include in the tweet object | |
tweetId | Yes | The ID of the tweet |
Input Schema (JSON Schema)
{
"properties": {
"tweetFields": {
"description": "Fields to include in the tweet object",
"items": {
"type": "string"
},
"type": "array"
},
"tweetId": {
"description": "The ID of the tweet",
"type": "string"
}
},
"required": [
"tweetId"
],
"type": "object"
}