create_contact
Add new contacts to iCloud Contacts with details like name, phone, email, address, and organization. Manage contact information through structured input for personal or professional use.
Instructions
Create a new contact in iCloud Contacts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| firstName | No | First name | |
| lastName | No | Last name | |
| fullName | No | Full display name (overrides firstName + lastName for FN field) | |
| org | No | Organization / company name | |
| phone | No | Primary phone number (shorthand for phones array) | |
| No | Primary email address (shorthand for emails array) | ||
| phones | No | Array of phone objects: [{ number, type }] where type is cell/home/work/etc. | |
| emails | No | Array of email objects: [{ email, type }] where type is home/work/etc. | |
| addresses | No | Array of address objects: [{ street, city, state, zip, country, type }] | |
| birthday | No | Birthday in YYYY-MM-DD format | |
| note | No | Notes / free text | |
| url | No | Website URL |