Novita MCP Server

by novitalabs
MIT License
70
2

list-gpu-instances

Retrieve and filter GPU instances on Novita MCP Server by name, status, or product. Manage instance operations with customizable page size and number for efficient resource monitoring.

Input Schema

NameRequiredDescriptionDefault
nameNoFilter by the instance name
pageNumberNoPage number to return, start from
pageSizeNoNumber of instances to return,
productNameNoFilter by the product name
statusNoFilter by the instance status

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "description": "Filter by the instance name", "maxLength": 1024, "type": "string" }, "pageNumber": { "default": 1, "description": "Page number to return, start from ", "minimum": 0, "type": "number" }, "pageSize": { "default": 10, "description": "Number of instances to return, ", "minimum": 0, "type": "number" }, "productName": { "description": "Filter by the product name", "type": "string" }, "status": { "description": "Filter by the instance status", "enum": [ "running", "pulling", "exited", "resetting", "removed", "migrating", "freezing" ], "type": "string" } }, "type": "object" }
ID: f1rv6j126v