delete_tweet
Remove a specific tweet using its unique ID on the X (Twitter) MCP server, ensuring precise content management and cleanup.
Instructions
Delete a tweet by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tweet_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"tweet_id": {
"title": "Tweet Id",
"type": "string"
}
},
"required": [
"tweet_id"
],
"type": "object"
}