X MCP Server
by DataWhisker
create_tweet
Create a new tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text content of the tweet |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The text content of the tweet",
"maxLength": 280,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}