deleteTweet
Remove a specific tweet from Twitter by providing its unique ID using the Twitter MCP Server. Streamline content management and maintain control over your social media presence.
Instructions
Delete a tweet by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tweetId | Yes | The ID of the tweet to delete |
Input Schema (JSON Schema)
{
"properties": {
"tweetId": {
"description": "The ID of the tweet to delete",
"type": "string"
}
},
"required": [
"tweetId"
],
"type": "object"
}