Create Aggregate
netbox_create_aggregateCreate an IP aggregate in NetBox by providing a CIDR prefix and RIR ID. Optionally add tags, tenant, comments, and custom fields.
Instructions
Create a new aggregate 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 |
|---|---|---|---|
| rir | Yes | RIR id (required, e.g. ARIN/RIPE). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| prefix | Yes | Aggregate CIDR, e.g. '10.0.0.0/8' (required). | |
| tenant | No | ||
| comments | No | ||
| date_added | No | Date added (ISO-8601, YYYY-MM-DD). | |
| description | No | ||
| 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 |