whatsapp_send_poll
WhatsApp · macOS
Effect: send (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Sends a poll to a WhatsApp chat/group — everyone in the chat sees it. chat_id MUST come from whatsapp_list_chats / whatsapp_list_groups. It is a write operation: the first call (confirm=false) returns a preview without sending; set confirm=true to actually send. Give 2–12 options; set multi>1 to allow picking several. Read results later with whatsapp_read_poll (whose count is indicative — see that tool). ⚠️ Uses Wacli (unofficial WhatsApp client). Accounts may be restricted for ToS violations.
Required inputs
chat_id— Chat/group JID from whatsapp_list_chats/whatsapp_list_groupsquestion— Poll questionoptions— 2–12 poll options
Permissions and confirmation
Explicit confirmation parameter: inspect the schema and tool description before any real call. The documentation example keeps confirm false. Obtain user authorization before performing the action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"chat_id": {
"description": "Chat/group JID from whatsapp_list_chats/whatsapp_list_groups",
"type": "string"
},
"confirm": {
"description": "Must be true to actually send. Without it, returns a preview.",
"type": "boolean"
},
"multi": {
"description": "Max options a voter may pick (1 = single-select, default 1)",
"type": "integer"
},
"options": {
"description": "2–12 poll options",
"items": {
"type": "string"
},
"type": "array"
},
"question": {
"description": "Poll question",
"type": "string"
}
},
"required": [
"chat_id",
"question",
"options"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"chat_id": "[email protected]",
"confirm": false,
"options": [
"Tuesday",
"Wednesday"
],
"question": "Which day works for the planning meeting?"
}