{"name":"nasa-intel","version":"1.0.0","tools":[{"name":"get_astronomy_picture","description":"Fetches NASA's Astronomy Picture of the Day (APOD) — a daily image or video of space with an expert-written explanation, optionally for a specific past date. Uses NASA's public api.nasa.gov DEMO_KEY by default, which is rate-limited to 30 requests/hour/IP; supply a personal key via the NASA_API_KEY secret for heavier use.","inputSchema":{"type":"object","properties":{"date":{"type":"string","description":"Optional date in YYYY-MM-DD format to fetch a past Astronomy Picture of the Day. Defaults to today if omitted."}},"additionalProperties":false}},{"name":"get_near_earth_objects","description":"Fetches near-Earth asteroids and their close-approach data (size, velocity, miss distance, hazard status) for a date range from NASA's NEO Feed API. NASA limits ranges to a maximum of 7 days. Uses the public DEMO_KEY by default, rate-limited to 30 requests/hour/IP; set NASA_API_KEY for a higher limit.","inputSchema":{"type":"object","properties":{"start_date":{"type":"string","description":"Start date in YYYY-MM-DD format."},"end_date":{"type":"string","description":"End date in YYYY-MM-DD format. Must be within 7 days of start_date."}},"required":["start_date","end_date"],"additionalProperties":false}},{"name":"get_mars_rover_photos","description":"Fetches photos taken by the Curiosity Mars rover on a given Martian solar day (sol), via NASA's Mars Rover Photos API. Uses the public DEMO_KEY by default, rate-limited to 30 requests/hour/IP; set NASA_API_KEY for a higher limit. Note: this upstream API is hosted on a third-party Heroku backend that has shown intermittent or extended outages — a failure here may reflect that upstream service being down rather than a bad request.","inputSchema":{"type":"object","properties":{"sol":{"type":"number","description":"Martian solar day number since the rover's landing (e.g. 1000). Must be a non-negative integer."}},"required":["sol"],"additionalProperties":false}}]}