Create Module
netbox_create_moduleCreate a module in NetBox by specifying module bay and module type. Optionally add tags, serial, status, comments, asset tag, description, and custom fields.
Instructions
Create a new module 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. | |
| serial | No | ||
| status | No | active | |
| comments | No | ||
| asset_tag | No | ||
| module_bay | Yes | Module bay id this module installs into (required). | |
| description | No | ||
| module_type | Yes | Module type id (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 |