| [ | |
| { | |
| "name": "get_epic_imagery", | |
| "description": "Get images from the EPIC (Earth Polychromatic Imaging Camera).", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "collection": { | |
| "type": "string", | |
| "discription":"Collection type. Options: natural, enhanced." | |
| } | |
| }, | |
| "required": [] | |
| } | |
| }, | |
| { | |
| "name": "get_epic_imagery_by_date", | |
| "description": "Get images from the EPIC (Earth Polychromatic Imaging Camera) for a specific date.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "date": { | |
| "type": "string", | |
| "discription":"Date in YYYY-MM-DD format." | |
| }, | |
| "collection": { | |
| "type": "string", | |
| "discription":"Collection type. Options: natural, enhanced." | |
| } | |
| }, | |
| "required": [ | |
| "date" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "get_epic_dates", | |
| "description": "Get available dates for EPIC images.", | |
| "inputSchema": { | |
| "type": "object", | |
| "properties": { | |
| "collection": { | |
| "type": "string", | |
| "discription":"Collection type. Options: natural, enhanced." | |
| } | |
| }, | |
| "required": [] | |
| } | |
| } | |
| ] |