You're viewing a demo portfolio

Join the waitlist
PRSM

build_packing_list

Active

Tool of io.github.outdoorithm/outdoorithm

declared in 0.1.0

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
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

No endpoints wrapped at confidence ≥ 0.70.

Parent server

io.github.outdoorithm/outdoorithm

https://github.com/outdoorithm/website

1/7 registries
View full server →