Travelenie
Travelenie is your personal Al travel assistant, designed to handle the complex details of every trip so you can focus on enjoying the journey. From the moment you start planning to your final photo caption, Travelenie organizes your entire trip lifecycle.
- Homepage
- https://travelenie.com/
- Remote URL
https://mcp.travelenie.com/mcp- Auth
- NONE
Tools (20)
Extracted live via the executor SDK.
-
trip-createCreate a new empty trip with a name and optional date range. Use this when the user wants to start a new trip without any bookings yet. For adding bookings, use segment-create instead (it auto-creates trips).
-
trip-readRetrieve trip data including segment details and IDs. Use this when you need trip details to perform another operation (e.g., to look up a segment ID before calling segment-update or segment-delete). This does NOT display a widget to the user. To show the user their itinerary, use trip-view instead.
-
trip-viewDisplay the user's trip as an interactive itinerary widget. Use this when the user wants to see their trip, review their itinerary, check flight times, see hotel reservations, browse activities, or get an overview of their travel plans. Also use after completing a series of changes to show the updated trip. Common requests: 'show my trip', 'what's my itinerary', 'when do I fly', 'what hotel am I staying at', 'let me see my travel plans'.
-
trip-updateUpdate trip metadata such as name or date range. To modify segments (flights, hotels, etc.), use segment-update instead.
-
trip-deleteDelete a trip. Use this when the user wants to remove an entire trip. To remove a single segment, use segment-delete instead. Ask the user to confirm before deleting.
-
trip-mergeMerge all segments from a source trip into a target trip, then permanently remove the source trip and its related artifacts (shares, prep cache, and journal entries). The target trip keeps its name. Use when the user has duplicate trips or wants to combine trips. Ask for explicit confirmation before calling this tool.
-
trip-listUse this when the user wants to see all their trips, asks 'what trips do I have', or mentions a trip by name without specifying which one. Also use when the user references 'my Japan trip', 'summer vacation', or 'upcoming travel' to find the matching trip. Shows all trips with names, dates, and destinations.
-
segment-createAdd one or more booking segments (flights, hotels, cars, trains, activities) to a trip. If tripId is omitted, a new trip is created automatically. Use this when the user shares booking confirmations, emails, or wants to add reservations. Do not use this to correct an existing segment — use segment-update instead. Before calling, check trip-list for existing trips. If you detect a duplicate segment (same flight route+date, same hotel+dates), ask the user before proceeding.
-
segment-readRead details of a single segment by its ID. Returns the full segment data including type, dates, locations, and confirmation codes.
-
segment-updateUpdate a segment in a trip. Uses supersede pattern - old version is preserved for history. Use this for any change to an existing segment, including date, time, venue, or detail corrections. Returns the updated trip brief automatically. No need to call trip-read after.
-
segment-deleteDelete one or more segments from a trip. Uses soft-delete. Only use when the user explicitly wants to remove a segment. Do not delete and recreate a segment to correct it — use segment-update instead.
-
trip-prep-analysisUse this when the user asks about trip preparation, wants to know what they need before traveling, or asks about travel requirements. Covers visa requirements, passport validity, packing suggestions, and travel documents. Common requests: 'what do I need for my trip', 'am I ready to travel', 'do I need a visa', 'help me prepare'. Returns an interactive checklist.
-
trip-prep-item-updateUse this when the user marks a preparation task as done, undoes a completed item, or dismisses a recommendation. Common requests: 'I packed my passport', 'mark visa as done', 'I don't need that item', 'uncheck the packing item'.
-
trip-journalLog a journal entry for a trip — experiences, reactions, memories, or thoughts about your travels. Use when the user shares what they did, how they felt, or what they experienced.
- If the user mentions a place, restaurant, or activity that could be on the schedule, call trip-read first to find the matching segment and include its segmentId.
- To log a new experience: include title, date, and/or location as available.
- For general impressions: just include the text.
- To update an existing entry: include entryId. Capture the user's words naturally. Do not ask for details they didn't volunteer — they can add more anytime.
-
trip-shareCreate a share code for a trip. The code can be sent to another person who can then claim it using trip-share-claim to access the trip. The owner chooses whether to grant view-only or full edit access.
-
trip-share-claimClaim access to a trip using a share code. Use this when the user has a share code from someone who shared a trip with them. After claiming, the trip appears in their trip list and can be viewed or edited depending on the permission level granted.
-
trip-share-listList trip sharing activity. Use direction 'outgoing' to see shares the user created for their trips. Use direction 'incoming' to see trips others have shared with the user.
-
trip-share-revokeRevoke a share code so it can no longer be used. All recipients who previously claimed this code will lose access. Only the trip owner can revoke.
-
aboutUse this when the user asks what Travelenie can do or how to prompt it. Returns active capabilities and high-quality sample prompts for currently enabled features.
-
widget-telemetryInternal tool for client-side widget logging. Not for direct use.