create_group
Create a new WhatsApp group by specifying a group name and participant phone numbers using the WhatsApp MCP Server.
Instructions
Create a new WhatsApp group.
Parameters:
- group_name: Name of the group to create
- participants: List of participant phone numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_name | Yes | ||
participants | Yes |
Input Schema (JSON Schema)
{
"properties": {
"group_name": {
"title": "Group Name",
"type": "string"
},
"participants": {
"items": {
"type": "string"
},
"title": "Participants",
"type": "array"
}
},
"required": [
"group_name",
"participants"
],
"title": "create_groupArguments",
"type": "object"
}