Skip to main content
Glama

NetBox MCP Server - Read & Write Edition

by alexkiwi1

netbox_bulk_create_objects

Create multiple NetBox objects simultaneously by specifying object type and data lists to efficiently populate infrastructure inventory.

Instructions

Create multiple objects in NetBox in a single request.

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

Returns: List of created objects

Example: To create multiple sites: netbox_bulk_create_objects("sites", [ {"name": "Site A", "slug": "site-a", "status": "active"}, {"name": "Site B", "slug": "site-b", "status": "active"} ])

Input Schema

NameRequiredDescriptionDefault
dataYes
object_typeYes

Input Schema (JSON Schema)

{ "properties": { "data": { "items": {}, "title": "Data", "type": "array" }, "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