Novita MCP Server

by novitalabs
MIT License
70
2

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

NameRequiredDescriptionDefault
channelNoChannels of template to return
pageNumNoPage number to return, start from 1
pageSizeNoNumber of templates to return in each page
typeNoType 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" }
ID: f1rv6j126v