Skip to main content
Glama
novitalabs

Novita MCP Server

Official
by novitalabs

start-gpu-instance

Initiate GPU instance operations by specifying the instance ID to start using the Novita MCP Server. Ideal for managing AI platform resources efficiently.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
instanceIdYesID of the instance to start

Implementation Reference

  • The async handler function that sends a POST request to the Novita API endpoint `/gpu/instance/start` with the instanceId to start the GPU instance and returns the formatted result.
    }, async (params) => { const result = await novitaRequest(`/gpu/instance/start`, "POST", { instanceId: params.instanceId, }); return { content: [ { type: "text", text: JSON.stringify(result, null, 2), }, ], }; });
  • Zod schema defining the input parameter `instanceId` as a required string with description.
    instanceId: z .string() .describe("ID of the instance to start"),
  • src/tools.ts:208-224 (registration)
    The server.tool call that registers the "start-gpu-instance" tool, including its input schema and inline handler function.
    server.tool("start-gpu-instance", { instanceId: z .string() .describe("ID of the instance to start"), }, async (params) => { const result = await novitaRequest(`/gpu/instance/start`, "POST", { instanceId: params.instanceId, }); return { content: [ { type: "text", text: JSON.stringify(result, null, 2), }, ], }; });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/novitalabs/novita-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server