get_solar_flare
Retrieve solar flare (FLR) data for specified date ranges using NASA-MCP server. Input start and end dates to access detailed solar activity information for analysis and monitoring.
Instructions
Get solar flare (FLR) data.
Args: start_date: Start date in YYYY-MM-DD format. Defaults to 30 days before current date. end_date: End date in YYYY-MM-DD format. Defaults to current date.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | No |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"default": null,
"title": "End Date",
"type": "string"
},
"start_date": {
"default": null,
"title": "Start Date",
"type": "string"
}
},
"title": "get_solar_flareArguments",
"type": "object"
}