vote_on_poll
Submit votes on Twitter polls using tweet ID and choice. Enables participation in polls within the X (Twitter) MCP server.
Instructions
Vote on a poll (mocked)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
choice | Yes | ||
tweet_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"choice": {
"title": "Choice",
"type": "string"
},
"tweet_id": {
"title": "Tweet Id",
"type": "string"
}
},
"required": [
"tweet_id",
"choice"
],
"type": "object"
}