Trip Planner
render_tripRenders a day-by-day trip itinerary with time slots, locations, costs, and a budget tracker. Users can swap, remove, or comment on activities and request style changes.
Instructions
Render a day-by-day trip itinerary with time slots, locations, costs, and a budget tracker. The user can swap, remove, or comment on individual activities and send style preferences (e.g. 'make it more relaxed') back to Claude. Pass itinerary as a JSON array of day objects. Use the same currency as the trip explorer if the user came from there.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | Trip title | |
| currency | No | Currency code, e.g. INR, USD, EUR. Defaults to USD. | |
| itinerary | Yes | JSON array: [{"day":"Day 1 - Arrival","activities":[{"time":"9:00 AM","activity":"Visit museum","location":"Downtown","cost":25,"notes":"Book online"}]}, ...] | |
| trip_days | No | Number of trip days — used for regeneration requests | |
| destination | No | Destination name, e.g. 'Goa' — used for regeneration requests | |
| total_budget | No | Total trip budget in the specified currency |