prepare_reservation
ActiveTool of io.github.outdoorithm/outdoorithm
Prepare a one-tap booking handoff for the user's chosen campground/dates. Returns a pre-filled deep link to the operator's reservation page plus the booking-window context (release date/time, ToS-compliant guidance, alert suggestion) the agent needs to advise the user. Does NOT book on behalf — third-party booking is prohibited by Recreation.gov, ReserveCalifornia, ReserveAmerica, and every other supported public-land operator. Pair with ``check_availability`` first to confirm the dates are reservable and to surface site-specific ``booking_url`` values when available. Args: campground_id: Outdoorithm CUID (e.g. ``RecreationDotGov:232447``). start_date: Check-in date (YYYY-MM-DD). end_date: Check-out date (YYYY-MM-DD). party_size: Optional group size. Surfaced in the user-facing summary; most operators don't accept this in URL params, so it isn't embedded in the deep link.
Parameters schema
{
"type": "object",
"required": [
"campground_id",
"start_date",
"end_date"
],
"properties": {
"end_date": {
"type": "string"
},
"party_size": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null
},
"start_date": {
"type": "string"
},
"campground_id": {
"type": "string"
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
io.github.outdoorithm/outdoorithm
https://github.com/outdoorithm/website
1/7 registries