get_recent_contacts
Retrieve macOS Contacts created or modified within a specified date range. Use inputs like days back, type (created/modified/both), and limit to filter results efficiently. Simplifies contact management directly via the macOS Contacts MCP server.
Instructions
Get contacts created or modified within a date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_back | No | Number of days back to search | |
limit | No | Maximum number of results to return | |
type | No | Type of date to filter by | modified |
Input Schema (JSON Schema)
{
"properties": {
"days_back": {
"default": 30,
"description": "Number of days back to search",
"type": "integer"
},
"limit": {
"default": 20,
"description": "Maximum number of results to return",
"type": "integer"
},
"type": {
"default": "modified",
"description": "Type of date to filter by",
"enum": [
"created",
"modified",
"both"
],
"type": "string"
}
},
"type": "object"
}