Create Platform
netbox_create_platformCreate a platform record in NetBox with required name and slug. Optionally include tags, description, manufacturer, custom fields, or config template.
Instructions
Create a new platform 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 | Platform name (required). | |
| slug | Yes | URL-safe slug (required). | |
| tags | No | Optional array of tag slugs to apply to the object. | |
| description | No | ||
| manufacturer | No | Limit this platform to one manufacturer (optional). | |
| custom_fields | No | Optional object of custom-field slugs -> values. Only include fields defined on your NetBox instance. | |
| config_template | No | Config template id. | |
| response_format | No | Output format: 'markdown' (default, human-readable) or 'json' (full structured payload). Use 'json' when chaining follow-up tool calls. | markdown |