Create Power_feed
netbox_create_power_feedCreate a new power feed in NetBox, specifying power panel, name, and optional attributes such as type, phase, voltage, amperage, and status.
Instructions
Create a new power_feed in NetBox.
This adds a new row to NetBox. Ask before calling if the user wanted a dry-run.
available_power (watts) is computed by NetBox and read-only; it appears in responses but is not a writable field.
Returns: Markdown summary of the newly created object (default) or JSON with the full NetBox response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Feed name (required). | |
| rack | No | Rack id this feed serves. | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| type | No | 'primary' or 'redundant' (A-side / B-side). | primary |
| phase | No | single-phase | |
| status | No | active | |
| supply | No | ac | |
| tenant | No | Tenant id. | |
| voltage | No | Voltage (V). | |
| amperage | No | Amperage (A). | |
| comments | No | ||
| description | No | ||
| power_panel | Yes | Power panel id (required). | |
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| mark_connected | No | Treat as connected even without a cable. | |
| max_utilization | No | Max utilization percent (NetBox default 80). | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |