Create Asset
netbox_create_assetCreate a new asset in NetBox with a required status and optional hardware type, serial, tags, or custom fields. Returns a summary or JSON.
Instructions
Create a new asset in NetBox.
This adds a new row to NetBox. Ask before calling if the user wanted a dry-run.
Every asset needs exactly ONE hardware type set: device_type, module_type, inventoryitem_type, or rack_type.
Returns: Markdown summary of the newly created object (default) or JSON with the full NetBox response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Asset name (optional; often derived from hardware). | |
| rack | No | Assign to dcim rack id. | |
| role | No | Asset role id. | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| module | No | Assign to dcim module id. | |
| serial | No | Identifier assigned by manufacturer. | |
| status | Yes | Asset lifecycle status (required). netbox-inventory defaults: 'stored', 'used', 'retired' (or your instance's custom statuses). | |
| tenant | No | Using-tenant id. | |
| contact | No | Contact id. | |
| comments | No | ||
| delivery | No | Delivery id. | |
| purchase | No | Purchase id. | |
| asset_tag | No | Identifier assigned by owner. | |
| device_id | No | Assign to dcim device id. Exposed as device_id (not device) for the remote-devices bridge; mapped back to the NetBox API field device on write. | |
| rack_type | No | dcim rack-type id. | |
| description | No | ||
| device_type | No | dcim device-type id. Set exactly ONE hardware type (device_type / module_type / inventoryitem_type / rack_type). | |
| module_type | No | dcim module-type id. | |
| warranty_end | No | Warranty end date (ISO-8601, YYYY-MM-DD). | |
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| inventoryitem | No | Assign to dcim inventory-item id. | |
| owning_tenant | No | Owning-tenant id (asset owner). | |
| warranty_start | No | Warranty start date (ISO-8601, YYYY-MM-DD). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |
| storage_location | No | dcim location id where the asset is stored. | |
| inventoryitem_type | No | inventory item type id. |