get_mars_rover_manifest
Retrieve detailed mission manifests for Mars rovers (Curiosity, Opportunity, Spirit), including launch/landing dates, status, total photos, and daily photo counts via NASA-MCP server.
Instructions
Get the mission manifest for a Mars rover (Curiosity, Opportunity, Spirit). Provides mission details like landing/launch dates, status, max sol/date, total photos, and photo counts per sol.
Args: rover_name: Name of the rover (curiosity, opportunity, spirit).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rover_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rover_name": {
"title": "Rover Name",
"type": "string"
}
},
"required": [
"rover_name"
],
"title": "get_mars_rover_manifestArguments",
"type": "object"
}