list-templates
Retrieve paginated lists of instance or serverless templates from private, community, or official channels for efficient resource management on the Novita MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | No | Channels of template to return | |
pageNum | No | Page number to return, start from 1 | |
pageSize | No | Number of templates to return in each page | |
type | No | Type of template to return |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channel": {
"description": "Channels of template to return",
"items": {
"enum": [
"private",
"community",
"official"
],
"type": "string"
},
"type": "array"
},
"pageNum": {
"default": 1,
"description": "Page number to return, start from 1",
"minimum": 0,
"type": "number"
},
"pageSize": {
"default": 20,
"description": "Number of templates to return in each page",
"minimum": 0,
"type": "number"
},
"type": {
"description": "Type of template to return",
"enum": [
"instance",
"serverless"
],
"type": "string"
}
},
"type": "object"
}