create_contact
Generate and store a new contact with details such as name, organization, job title, emails, phone numbers, URLs, and notes directly in macOS Contacts.
Instructions
Create a new contact
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emails | No | Email addresses | |
job_title | No | Job title or position | |
name | Yes | Full name of the contact | |
note | No | Notes about the contact | |
organization | No | Organization or company name | |
phones | No | Phone numbers | |
urls | No | URLs (social media, websites, etc.) with labels |
Input Schema (JSON Schema)
{
"properties": {
"emails": {
"description": "Email addresses",
"items": {
"type": "string"
},
"type": "array"
},
"job_title": {
"description": "Job title or position",
"type": "string"
},
"name": {
"description": "Full name of the contact",
"type": "string"
},
"note": {
"description": "Notes about the contact",
"type": "string"
},
"organization": {
"description": "Organization or company name",
"type": "string"
},
"phones": {
"description": "Phone numbers",
"items": {
"type": "string"
},
"type": "array"
},
"urls": {
"description": "URLs (social media, websites, etc.) with labels",
"items": {
"properties": {
"label": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"label",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}