send_notification
Deliver weather alerts and updates directly to macOS users through native system notifications, providing timely information on temperature, conditions, humidity, wind speed, and atmospheric pressure.
Instructions
Send a macOS notification with provided weather data
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Notification message | |
title | Yes | Notification title |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Notification message",
"type": "string"
},
"title": {
"description": "Notification title",
"type": "string"
}
},
"required": [
"title",
"message"
],
"type": "object"
}