Create Cable
netbox_create_cableCreate a new cable connection in NetBox by specifying terminations, cable type, status, and optional attributes.
Instructions
Create a new cable 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. | |
| type | No | Cable type slug, e.g. 'cat6', 'smf', 'mmf-om4', 'dac-passive'. | |
| color | No | Hex color without '#'. | |
| label | No | ||
| length | No | ||
| status | No | connected | |
| tenant | No | ||
| comments | No | ||
| description | No | ||
| length_unit | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| a_terminations | No | A-side terminations (usually one). Required to actually connect the cable to endpoints. | |
| b_terminations | No | B-side terminations (usually one). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |