list_contacts
Retrieve and filter Google Contacts by name with custom results limit. Use to access and organize contact lists efficiently within your Google account.
Instructions
List all contacts or filter by name.
Args:
name_filter: Optional filter to find contacts by name
max_results: Maximum number of results to return (default: 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_results | No | ||
name_filter | No |
Input Schema (JSON Schema)
{
"properties": {
"max_results": {
"default": 100,
"title": "Max Results",
"type": "integer"
},
"name_filter": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name Filter"
}
},
"title": "list_contactsArguments",
"type": "object"
}