search_contacts
Search contacts by name, returning paginated results with item count and pagination flag for further retrieval.
Instructions
Search contacts by matching the query against contact names. Returns {items, count, hasMore} — increment offset by limit when hasMore is true. For full contact details, call get_contact on a matching ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of contacts to return, 1-100 (e.g., 10). Defaults to 25 if omitted. | |
| query | Yes | Search query text matched against contact names (e.g., "John") | |
| offset | No | Number of contacts to skip for pagination (e.g., 25 for page 2). Defaults to 0 if omitted. |