create_gear
Create a gear item to track equipment usage and maintenance. Provide name, gear type, brand, model, and active/primary settings. Returns the created item with ID and initial stats.
Instructions
Create a new gear item for tracking equipment usage and maintenance.
Args: name: Name of the gear item (e.g., "Road Bike", "Running Shoes") gear_type: Type of gear - BIKE, SHOE, TRAINER, WETSUIT, or OTHER brand: Brand name (optional) model: Model name (optional) active: Whether this gear is actively used (default: True) primary: Whether this is the primary gear of this type (default: False)
Returns: Created gear item with ID and initial stats
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the gear item | |
| brand | No | Brand name | |
| model | No | Model name | |
| active | No | Whether this gear is actively used | |
| primary | No | Whether this is the primary gear of this type | |
| gear_type | Yes | Type of gear (e.g., 'BIKE', 'SHOE', 'TRAINER', 'WETSUIT', 'OTHER') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |