get-template
Retrieve a specific template by ID from the Novita MCP Server to manage AI platform resources efficiently. Simplifies template access for GPU instance operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
templateId | Yes | ID of the template to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"templateId": {
"description": "ID of the template to retrieve",
"type": "string"
}
},
"required": [
"templateId"
],
"type": "object"
}