delete-gpu-instance
Delete a GPU instance on Novita MCP Server using its unique instance ID, ensuring resource management by removing unnecessary instances efficiently.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceId | Yes | ID of the instance to delete. Before calling the MCP tool to delete the instance, MUST show me the details of the instance to help me identify it, including id, name, etc. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"instanceId": {
"description": "ID of the instance to delete. Before calling the MCP tool to delete the instance, MUST show me the details of the instance to help me identify it, including id, name, etc.",
"type": "string"
}
},
"required": [
"instanceId"
],
"type": "object"
}