Novita MCP Server

by novitalabs
MIT License
70
2

update-network-storage

Update the size or rename a network storage on Novita MCP Server by specifying the storage ID, new size (in GB), and optional new name. Ensure the new size is larger than the current size.

Input Schema

NameRequiredDescriptionDefault
storageIdYesThe unique ID of the network storage to update. Please ensure it exists before updating.
storageNameNoNew name for the network storage. This is optional, if not provided, the name will not be changed. Use only letters, numbers, and hyphens
storageSizeYesNew size in GB (must be larger than current size). You can use the `list-network-storage` tool to get the current size if you don't know it.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "storageId": { "description": "The unique ID of the network storage to update. Please ensure it exists before updating.", "minLength": 1, "type": "string" }, "storageName": { "description": "New name for the network storage. This is optional, if not provided, the name will not be changed. Use only letters, numbers, and hyphens", "type": "string" }, "storageSize": { "description": "New size in GB (must be larger than current size). You can use the `list-network-storage` tool to get the current size if you don't know it.", "minimum": 10, "type": "number" } }, "required": [ "storageId", "storageSize" ], "type": "object" }
ID: f1rv6j126v