get_notifications
Retrieve space weather and astronomical notifications from NASA's DONKI system. Specify date range and notification type (e.g., FLR, CME, SEP) to access alerts and reports directly via the NASA-MCP server.
Instructions
Get DONKI notifications.
Args: start_date: Start date in YYYY-MM-DD format. Defaults to 7 days before current date. end_date: End date in YYYY-MM-DD format. Defaults to current date. notification_type: Notification type. Options: all, FLR, SEP, CME, IPS, MPC, GST, RBE, report.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
notification_type | No | all | |
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"default": null,
"title": "End Date",
"type": "string"
},
"notification_type": {
"default": "all",
"title": "Notification Type",
"type": "string"
},
"start_date": {
"default": null,
"title": "Start Date",
"type": "string"
}
},
"title": "get_notificationsArguments",
"type": "object"
}