Skip to main content
Glama
razvangirgiz

wazap-mcp

by razvangirgiz

Remove a WhatsApp contact

remove_contact
Destructive

Delete a saved WhatsApp contact while keeping the chat history and without notifying the contact. Provide contact ID or phone number.

Instructions

Take a person out of the account's WhatsApp contacts: the saved entry and its name go, the chat and its history stay. Nothing is sent to the contact.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idNoRegistry account id (default, work, …). Omit to resolve from chat_id or message_id, or the default account.
contact_idYesContact id from search_contacts / get_contact, or a phone number

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.21.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already indicate destructive and non-readonly behavior. The description adds specific consequences: the chat and history remain, and nothing is sent to the contact. This goes beyond annotations by clarifying what is NOT affected, which is valuable for an agent.

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 two sentences with no filler. It front-loads the main action and then adds precise behavioral details. Every sentence earns its place.

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 simple destructive tool, the description covers the key behavioral outcomes (what is removed, what persists, no notification). It does not mention return values or error cases, but given the schema coverage and annotations, it is adequately complete for an agent to invoke correctly.

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?

The input schema has 100% parameter description coverage, providing clear meanings for account_id and contact_id. The description adds no additional parameter-level information, so a baseline 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 uses a specific verb ('remove') and resource ('contact'), and explicitly clarifies the scope: only the saved entry and name are removed, while chat history is preserved. This clearly distinguishes it from sibling tools like update_contact_details and save_contact, and from chat deletion tools.

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 clearly states the operation (removing a contact) and provides contextual detail (chat history stays, no notification). However, it does not explicitly mention alternatives or when not to use this tool, though the intent is unambiguous from the context.

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