get_asteroids
ActiveTool of Nasa
declared in 0.1.0
Get near-Earth asteroids approaching within a date range (max 7 days). Returns size, velocity, and miss distance. Example: get_asteroids({ start_date: "2024-01-01", end_date: "2024-01-07", _apiKey: "DEMO_KEY" })
Parameters schema
{
"type": "object",
"examples": [
{
"_apiKey": "your-nasa-api-key",
"end_date": "2024-01-07",
"start_date": "2024-01-01"
},
{
"_apiKey": "your-nasa-api-key",
"end_date": "2024-02-15",
"start_date": "2024-02-10"
}
],
"required": [
"start_date",
"end_date"
],
"properties": {
"_apiKey": {
"type": "string",
"description": "NASA API key (optional, defaults to DEMO_KEY)"
},
"end_date": {
"type": "string",
"description": "End date in YYYY-MM-DD format (max 7 days after start)"
},
"start_date": {
"type": "string",
"description": "Start date in YYYY-MM-DD format"
}
}
}Parent server
Nasa
https://github.com/pipeworx-io/mcp-nasa
1/7 registries