postTweet
Publish tweets to Twitter using a structured input format. Enables integration with the Twitter MCP Server for streamlined social media interaction.
Instructions
Post a tweet to Twitter
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text of the tweet |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text of the tweet",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}