tool_get_recent_messages
Retrieve recent messages from the macOS Messages app, filtering by time range (default: last 24 hours) and optional contact details like name, phone, or email.
Instructions
Get recent messages from the Messages app.
Args:
hours: Number of hours to look back (default: 24)
contact: Filter by contact name, phone number, or email (optional)
Use "contact:N" to select a specific contact from previous matches
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact | No | ||
hours | No |
Input Schema (JSON Schema)
{
"properties": {
"contact": {
"default": null,
"title": "Contact",
"type": "string"
},
"hours": {
"default": 24,
"title": "Hours",
"type": "integer"
}
},
"title": "tool_get_recent_messagesArguments",
"type": "object"
}