neuron_send_poll
ActiveTool of io.github.conquext/neuron
declared in 1.0.0
Send a poll message via WhatsApp. Polls support 2-12 options and optional multi-select. Only supported on Baileys channels.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"channelId",
"to",
"name",
"options"
],
"properties": {
"to": {
"type": "string",
"description": "Recipient JID or phone number (individual or group)"
},
"name": {
"type": "string",
"minLength": 1,
"description": "Poll question/title"
},
"options": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"maxItems": 12,
"minItems": 2,
"description": "Poll answer options (2-12 items)"
},
"channelId": {
"type": "string",
"description": "WhatsApp channel identifier (UUID)"
},
"selectableCount": {
"type": "integer",
"minimum": 0,
"description": "Max selections allowed. 0 = unlimited (default). 1 = single-choice."
}
},
"additionalProperties": false
}Parent server
io.github.conquext/neuron
https://github.com/conquext/neuron-mcp-server
1/7 registries