publish_twitter_post
Publish a text post (tweet) directly to Twitter using the LinkedIn MCP Assistant. Input your tweet text (up to 280 characters) to share content efficiently.
Instructions
Publish a text post (tweet) to Twitter.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
post_text | Yes | The text content of the tweet (maximum 280 characters). |
Input Schema (JSON Schema)
{
"properties": {
"post_text": {
"description": "The text content of the tweet (maximum 280 characters).",
"type": "string"
}
},
"required": [
"post_text"
],
"type": "object"
}