Novita MCP Server

by novitalabs
MIT License
70
2

create-network-storage

Define and allocate network storage for a specific cluster using cluster ID, storage name, and size in GB. Ensures resources are efficiently organized and accessible for Novita MCP Server operations.

Input Schema

NameRequiredDescriptionDefault
clusterIdYesThe ID of the cluster to create network storage. Must be from the `list-clusters` tool result, and the cluster must have supportNetworkStorage set to true
storageNameYesName for the network storage. Use only letters, numbers, and hyphens
storageSizeYesSize of the network storage in GB

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "clusterId": { "description": "The ID of the cluster to create network storage. Must be from the `list-clusters` tool result, and the cluster must have supportNetworkStorage set to true", "type": "string" }, "storageName": { "description": "Name for the network storage. Use only letters, numbers, and hyphens", "minLength": 1, "type": "string" }, "storageSize": { "description": "Size of the network storage in GB", "minimum": 10, "type": "number" } }, "required": [ "clusterId", "storageName", "storageSize" ], "type": "object" }
ID: f1rv6j126v