search_contacts
Locate specific contacts by searching with a name, email, or phone number query using this tool to retrieve up to a defined maximum number of results.
Instructions
Search contacts by name, email, or phone number.
Args:
query: Search term to find in contacts
max_results: Maximum number of results to return (default: 10)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 10,
"title": "Max Results",
"type": "integer"
},
"query": {
"title": "Query",
"type": "string"
}
},
"required": [
"query"
],
"title": "search_contactsArguments",
"type": "object"
}