Create Console_port
netbox_create_console_portCreate a new console port for a device in NetBox. Specify name, type, speed, and optional tags or custom fields. Returns summary or JSON.
Instructions
Create a new console_port 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 |
|---|---|---|---|
| name | Yes | Port name (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| type | No | Console port type slug, e.g. 'rj-45', 'usb-a', 'usb-c', 'de-9', 'db-25'. | |
| label | No | ||
| speed | No | Speed in bps. | |
| device_id | Yes | Device id (required). Exposed as device_id (not device) for the remote-devices bridge; mapped to the API field device on write. | |
| description | No | ||
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| mark_connected | No | ||
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |