Skip to main content
Glama

NetBox MCP Server - Read & Write Edition

by alexkiwi1

netbox_create_object

Create new objects in NetBox infrastructure management system by specifying object type and data parameters to add devices, IP addresses, sites, or other network components.

Instructions

Create a new object in NetBox.

Args: object_type: String representing the NetBox object type (e.g. "devices", "ip-addresses") data: Dict containing the object data to create

Returns: The created object as a dict

Example: To create a new site: netbox_create_object("sites", { "name": "New Site", "slug": "new-site", "status": "active" })

To create a new device: netbox_create_object("devices", { "name": "new-device", "device_type": 1, # ID of device type "site": 1, # ID of site "role": 1, # ID of device role "status": "active" })

Input Schema

NameRequiredDescriptionDefault
dataYes
object_typeYes

Input Schema (JSON Schema)

{ "properties": { "data": { "additionalProperties": true, "title": "Data", "type": "object" }, "object_type": { "title": "Object Type", "type": "string" } }, "required": [ "object_type", "data" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/alexkiwi1/netbox-mcp-rw'

If you have feedback or need assistance with the MCP directory API, please join our Discord server