Skip to main content
Glama
peter-tnc-453

guarded-whatsapp-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
wa_list_recipientsA

List the allowlisted WhatsApp recipients this engine is permitted to message. Read-only. Numbers are masked. Use the returned name as the recipient argument to wa_preview / wa_send_message / wa_send_file.

wa_previewA

Dry-run a send: run every security check and report exactly what WOULD happen, WITHOUT sending. Returns a verdict and, when the send needs confirmation, a confirm_token to pass back to the send tool. Use this before any send you are unsure about.

wa_audit_tailA

Return the most recent send-attempt audit records (allowed, blocked, or failed). Read-only. Message bodies are stored as a short preview + hash only.

wa_send_messageA

Send a WhatsApp text message to an allowlisted recipient. Passes through the full security gate (allowlist, secret scan, rate limit, confirmation). If the result has needs_confirm=true, re-call with the returned confirm_token.

wa_send_fileA

Send a file to an allowlisted recipient. The filename is auto-sanitized to an ASCII-safe name (so WhatsApp shows a real name, not 'Untitled', and no path traversal is possible), the type/size are validated, and the caption is secret-scanned. Sending files may require a confirm_token (see wa_preview).

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: listing recipients, dry-running a send, viewing audit records, sending messages, and sending files. The preview tool is explicitly read-only, so there is no confusion with the actual send tools.

Naming Consistency4/5

All tools share the wa_ prefix and use snake_case with verb-oriented names like wa_list_recipients and wa_send_message. wa_preview is a minor deviation because it lacks a noun object, and wa_audit_tail is slightly awkward, but the overall pattern is predictable.

Tool Count5/5

Five tools is well-scoped for a guarded WhatsApp messaging server: recipient discovery, preview/checking, audit history, text sending, and file sending. Each tool fills a necessary role with no redundancy.

Completeness5/5

The core secure-send lifecycle is fully covered: identify allowed recipients, preview outcomes, send text or files, and review audit records. The confirmation flow is built into the send tools, so there are no dead ends, and external allowlist management appears intentionally out of scope.

Maintenance

ActivityInactive
ResponsivenessNo issues