group_create
ActiveTool of io.github.saloprj/dialogbrain
Create a new group on a channel (Telegram or WhatsApp). Returns the new group's chat ID and invite link. What this does: - Creates a new group with the specified title - Returns chat_id, invite_link, and channel_ref for further operations - Optionally registers the group in your inbox for monitoring Returns: success, chat_id, channel_ref, title, thread_id.
Parameters schema
{
"type": "object",
"required": [
"title",
"channel"
],
"properties": {
"about": {
"type": "string",
"description": "Optional description or about text for the group"
},
"title": {
"type": "string",
"description": "Title/name of the group to create"
},
"channel": {
"type": "string",
"description": "Channel to create the group on (e.g., 'telegram', 'whatsapp')"
},
"group_type": {
"type": "string",
"default": "supergroup",
"description": "Type of group to create. Options: 'supergroup' (default), 'basic'. Telegram-only; ignored on WhatsApp."
},
"register_in_inbox": {
"type": "boolean",
"default": true,
"description": "Auto-register the created group in your inbox for monitoring. Default: true."
}
}
}Parent server
io.github.saloprj/dialogbrain
https://github.com/saloprj/dialogbrain-mcp
1/7 registries