| [ | |
| { | |
| "name": "get_astronomy_picture_of_day", | |
| "description": "Get NASA's astronomy picture of the day.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "date": { | |
| "type": "string", | |
| "discription":"Date of the image in YYYY-MM-DD format. If not specified, the current date is used." | |
| }, | |
| "count": { | |
| "type": "integer", | |
| "discription":"If specified, returns 'count' random images. Cannot be used with 'date'." | |
| }, | |
| "thumbs": { | |
| "type": "boolean", | |
| "discription":"If True, returns the thumbnail URL for videos. If APOD is not a video, this parameter is ignored." | |
| } | |
| }, | |
| "required": [] | |
| } | |
| } | |
| ] |