get_contact
Retrieve complete contact details from the macOS Contacts app by providing a contact name or unique ID, enabling quick access to essential information.
Instructions
Get full contact details by name or ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
identifier | Yes | Contact name or unique ID |
Input Schema (JSON Schema)
{
"properties": {
"identifier": {
"description": "Contact name or unique ID",
"type": "string"
}
},
"required": [
"identifier"
],
"type": "object"
}