get_asteroids_feed
Retrieve a list of asteroids approaching Earth within a specified date range. Input start_date (YYYY-MM-DD) and optional end_date (max 7-day limit) to fetch relevant data via NASA-MCP server.
Instructions
Get a list of asteroids based on their closest approach date to Earth.
Args: start_date: Start date for asteroid search in YYYY-MM-DD format. end_date: End date for asteroid search in YYYY-MM-DD format. The Feed date limit is only 7 Days. If not specified, 7 days after start_date is used.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"default": null,
"title": "End Date",
"type": "string"
},
"start_date": {
"title": "Start Date",
"type": "string"
}
},
"required": [
"start_date"
],
"title": "get_asteroids_feedArguments",
"type": "object"
}