post_tweet
Publish tweets with text, media, replies, or hashtags using the X (Twitter) MCP server for streamlined social media posting.
Instructions
Post a tweet with optional media, reply, and tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
media_paths | No | ||
reply_to | No | ||
tags | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"media_paths": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Media Paths"
},
"reply_to": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Reply To"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}