social-media-mcp
by angheljf
post_to_x
Post a message to X (formerly Twitter)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the post | |
threadId | No | ID of the thread to post to |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the post",
"type": "string"
},
"threadId": {
"description": "ID of the thread to post to",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}