list-network-storage
Retrieve and organize details of network storage instances, including IDs and names, using pagination to manage large datasets on the Novita MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageNo | No | Page number | |
pageSize | No | Page size | |
storageId | No | ID for the network storage | |
storageName | No | Name for the network storage |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageNo": {
"default": 1,
"description": "Page number",
"minimum": 0,
"type": "number"
},
"pageSize": {
"default": 10,
"description": "Page size",
"minimum": 0,
"type": "number"
},
"storageId": {
"description": "ID for the network storage",
"type": "string"
},
"storageName": {
"description": "Name for the network storage",
"type": "string"
}
},
"type": "object"
}