Skip to main content
Glama
Akram-Atassi

claude-whatsapp-mcp

by Akram-Atassi

Create a community

create_community

Create a WhatsApp community to hold several groups together and broadcast announcements to every member.

Instructions

Create a WhatsApp community — an umbrella that holds several groups, with an announcement channel every member sees. Members are not added directly to a community; they join by being in one of its groups. Use link_group_to_community or create_group(community=...) next.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subjectYesCommunity name
descriptionNoWhat the community is for — shown to people who join
link_groupsNoExisting groups to move into this community right away

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral disclosure burden. It reveals a key non-obvious constraint: members are not added directly to a community; they join via its groups. However, it does not mention permissions, what happens to groups passed in link_groups, or what the operation returns, leaving meaningful gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with no filler: it defines the resource, clarifies the membership model, and directs the next action. Every sentence contributes value and the key information is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a relatively simple creation tool with no annotations and no output schema, the description gives solid conceptual grounding and workflow guidance. It does not mention operational prerequisites or the full effects of link_groups, but for an agent familiar with common API patterns this is mostly complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters. The description adds useful context about communities and groups but does not meaningfully elaborate on parameter semantics beyond what the schema provides, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action and resource: creating a WhatsApp community. It defines what a community is (an umbrella that holds groups with an announcement channel) and distinguishes itself from sibling tools by explicitly pointing to link_group_to_community and create_group for adding groups.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains that members join through groups, not directly, and gives explicit next-step guidance: use link_group_to_community or create_group(community=...) after creating. It could be more explicit about when not to create a community, but the conceptual framing makes the intended workflow clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.