build_packing_list
ActiveTool of io.github.outdoorithm/outdoorithm
Generate a context-aware packing checklist for a camping trip. Returns categorized items from the gear catalog, adjusted for campground amenities, activities, weather, and group size. Args: campground_id: Optional CUID to personalize based on campground amenities trip_type: car_camping, backpacking, rv, or glamping (default car_camping) season: spring, summer, fall, or winter (optional) adults: Number of adults (default 2) children: Number of children (default 0) has_pets: Whether bringing pets (default false) activities: Planned activities (hiking, fishing, swimming, kayaking, biking, beach) nights: Number of nights (default 2)
Parameters schema
{
"type": "object",
"properties": {
"adults": {
"type": "integer",
"default": 2
},
"nights": {
"type": "integer",
"default": 2
},
"season": {
"anyOf": [
{
"enum": [
"spring",
"summer",
"fall",
"winter"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"children": {
"type": "integer",
"default": 0
},
"has_pets": {
"type": "boolean",
"default": false
},
"trip_type": {
"enum": [
"car_camping",
"backpacking",
"rv",
"glamping"
],
"type": "string",
"default": "car_camping"
},
"activities": {
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "null"
}
],
"default": null
},
"campground_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
io.github.outdoorithm/outdoorithm
https://github.com/outdoorithm/website
1/7 registries