search_contacts
Find and retrieve WhatsApp contacts by searching names or phone number parts using JID, enabling efficient contact management through the WhatsApp MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Search term for contact name or phone number part of JID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"query": {
"description": "Search term for contact name or phone number part of JID",
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}