get-gpu-instance
Retrieve detailed information about a specific GPU instance on the Novita MCP Server using its unique instance ID. Simplify resource management and tracking.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceId | Yes | ID of the instance to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"instanceId": {
"description": "ID of the instance to retrieve",
"type": "string"
}
},
"required": [
"instanceId"
],
"type": "object"
}