create_poll_tweet
Generate a tweet with an interactive poll, allowing users to vote on specified choices within a set time frame, using the X (Twitter) MCP server.
Instructions
Create a tweet with a poll
Input Schema
Name | Required | Description | Default |
---|---|---|---|
choices | Yes | ||
duration_minutes | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"choices": {
"items": {
"type": "string"
},
"title": "Choices",
"type": "array"
},
"duration_minutes": {
"title": "Duration Minutes",
"type": "integer"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text",
"choices",
"duration_minutes"
],
"type": "object"
}