create_travel
Add a new travel location by providing its ID, type (country/city), status (visited/want to visit/lived), and favorite indicator. Optionally set dates and notes.
Instructions
Add a new travel location. Use list_countries or list_cities to find the location_id first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| location_id | Yes | UUID from countries or cities endpoint | |
| location_type | Yes | Whether this is a country or city | |
| status | Yes | Travel status | |
| date_from | No | Start date (YYYY-MM-DD) | |
| date_to | No | End date (YYYY-MM-DD) | |
| notes | No | Notes about this location | |
| is_favorite | Yes | Whether this is a favorite location |