Support check-in time ranges for hotel bookings #366
Replies: 1 comment
|
Implemented in dev — will be included in the next release. PR: #672 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Many hotels have a check-in window rather than a single time — e.g. check-in from 15:00 until 22:00. Late arrivals outside that window often require prior arrangement or incur fees.
Currently, the
check_infield onday_accommodationsstores a single time value. This doesn't capture the cutoff.Proposal
Support a check-in time range so users (and MCP clients) can record both the earliest and latest check-in times. A few options:
check_in_endcolumn today_accommodationsalongside the existingcheck_in— simple and explicit"15:00-22:00"in the existingcheck_infield — no schema change but requires parsingOption 1 seems cleanest. The UI could then show "Check-in: 15:00 – 22:00" and warn if an arrival time falls outside the window.
This would be useful both in the planner UI and for MCP clients recommending hotel bookings.
Related: #363
All reactions