list-gpu-instances
Retrieve and filter GPU instances on Novita MCP Server by name, status, or product. Manage instance operations with customizable page size and number for efficient resource monitoring.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Filter by the instance name | |
| pageNumber | No | Page number to return, start from | |
| pageSize | No | Number of instances to return, | |
| productName | No | Filter by the product name | |
| status | No | Filter by the instance status |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Filter by the instance name",
"maxLength": 1024,
"type": "string"
},
"pageNumber": {
"default": 1,
"description": "Page number to return, start from ",
"minimum": 0,
"type": "number"
},
"pageSize": {
"default": 10,
"description": "Number of instances to return, ",
"minimum": 0,
"type": "number"
},
"productName": {
"description": "Filter by the product name",
"type": "string"
},
"status": {
"description": "Filter by the instance status",
"enum": [
"running",
"pulling",
"exited",
"resetting",
"removed",
"migrating",
"freezing"
],
"type": "string"
}
},
"type": "object"
}