| [ | |
| { | |
| "name": "get_mars_rover_photos", | |
| "description": "Get photos from a Mars rover (Curiosity, Opportunity, Spirit).", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "rover_name": { | |
| "type": "string", | |
| "discription":" Name of the rover (curiosity, opportunity, spirit)." | |
| }, | |
| "sol": { | |
| "type": "integer", | |
| "discription":"Martian sol (day number, starting from landing). Use if not using earth_date." | |
| }, | |
| "earth_date": { | |
| "type": "string", | |
| "discription":"Earth date in YYYY-MM-DD format. Use if not using sol." | |
| }, | |
| "camera": { | |
| "type": "string", | |
| "discription":" Filter by camera abbreviation (e.g., FHAZ, RHAZ, MAST, NAVCAM, PANCAM). See documentation for full list per rover." | |
| }, | |
| "page": { | |
| "type": "integer", | |
| "discription":"Page number for results (25 photos per page)." | |
| } | |
| }, | |
| "required": [ | |
| "rover_name" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "get_mars_rover_manifest", | |
| "description": "Get the mission manifest for a Mars rover (Curiosity, Opportunity, Spirit).", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "rover_name": { | |
| "type": "string", | |
| "discription":"Name of the rover (curiosity, opportunity, spirit)." | |
| } | |
| }, | |
| "required": [ | |
| "rover_name" | |
| ] | |
| } | |
| } | |
| ] |