yumo · docs
MCPTool reference

Itinerary events

Add and edit day-by-day events on a trip.

list_events

List all events on a trip, optionally filtered by day.

{ "tripId": "trp_...", "day": "2026-05-11" }

add_event

Add an event to a specific day.

{
  "tripId": "trp_...",
  "day": "2026-05-11",
  "title": "Lunch at Bib Gourmand",
  "time": "13:00",
  "location": "Tokyo, Japan",
  "notes": "Reservation under Smith"
}

day and title are required.

update_event

Update fields on an existing event. Only fields you include are changed.

{ "eventId": "evt_...", "time": "13:30" }

mark_event_done

Tick an event as done. Pass done: false to un-tick.

{ "eventId": "evt_...", "done": true }

move_event_to_day

Move an event to a different day.

{ "eventId": "evt_...", "day": "2026-05-12" }

delete_event

Permanently delete an event.

{ "eventId": "evt_..." }

Need help or found a bug?

Join the yumo community on Discord. We answer questions, take feature requests, and triage bug reports there.

Join the Discord

On this page