Create Mac_address
netbox_create_mac_addressCreate a new MAC address record in NetBox, optionally assigning it to an interface.
Instructions
Create a new mac_address in NetBox.
This adds a new row to NetBox. Ask before calling if the user wanted a dry-run.
Returns: Markdown summary of the newly created object (default) or JSON with the full NetBox response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Optional array of tag slugs to apply to the object. | |
| comments | No | ||
| description | No | ||
| mac_address | Yes | MAC address, e.g. '00:11:22:33:44:55' (required). | |
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |
| assigned_object_id | No | Interface / VM-interface id. | |
| assigned_object_type | No | Set with assigned_object_id to attach to an interface. |