Contacts — Address Book
- Always search by partial name (uses `contains`) to be flexible
LLM Evaluation
Evaluated by: xiaomi/mimo-v2-flash:free
Last evaluated: March 29, 2026
Prompt Preview
---
name: c-contacts
description: macOS Contacts — search, list, and look up contact details via AppleScript.
tags: [contacts, address-book, people, phone]
---
# Contacts — Address Book
Access macOS Contacts app via AppleScript. No CLI tool needed.
## Commands
```bash
# Search for a contact by name
osascript -e 'tell application "Contacts"
set results to (every person whose name contains "John")
set output to ""
repeat with p in results
set output to output & name of p & linefeed...
Full prompt length: 1864 characters