twitter_post_tweet
Publish tweets directly using a Twitter OAuth2 access token and text content. Integrate with the MCP Server - Twitter NoAuth to enable Twitter API operations without local credential setup.
Instructions
Post a new tweet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The tweet text content | |
twitter_access_token | Yes | Twitter OAuth2 access token |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"description": "The tweet text content",
"type": "string"
},
"twitter_access_token": {
"description": "Twitter OAuth2 access token",
"type": "string"
}
},
"required": [
"twitter_access_token",
"text"
],
"type": "object"
}