Skip to main content
Glama

NetBox MCP Server - Read & Write Edition

by alexkiwi1

netbox_update_object

Modify existing NetBox objects by specifying object type, ID, and update data to maintain accurate infrastructure records.

Instructions

Update an existing object in NetBox.

Args: object_type: String representing the NetBox object type (e.g. "devices", "ip-addresses") object_id: The numeric ID of the object to update data: Dict containing the object data to update (only changed fields needed)

Returns: The updated object as a dict

Example: To update a site's description: netbox_update_object("sites", 1, {"description": "Updated description"})

To change a device's status: netbox_update_object("devices", 5, {"status": "offline"})

Input Schema

NameRequiredDescriptionDefault
dataYes
object_idYes
object_typeYes

Input Schema (JSON Schema)

{ "properties": { "data": { "additionalProperties": true, "title": "Data", "type": "object" }, "object_id": { "title": "Object Id", "type": "integer" }, "object_type": { "title": "Object Type", "type": "string" } }, "required": [ "object_type", "object_id", "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