Skip to main content
Glama
novitalabs

Novita MCP Server

Official
by novitalabs

delete-network-storage

Remove network storage from the Novita AI platform by specifying its unique ID to free up resources and manage storage allocation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
storageIdYesThe unique ID of the network storage to delete. Please ensure it exists before updating.

Implementation Reference

  • Handler that deletes the network storage by sending a POST request to the API endpoint `/networkstorage/delete` using the provided params.
    }, async (params) => { const result = await novitaRequest(`/networkstorage/delete`, "POST", params); return { content: [ { type: "text", text: JSON.stringify(result, null, 2), }, ], }; });
  • Zod schema for the tool input: requires a non-empty string 'storageId'.
    storageId: z .string() .nonempty() .describe("The unique ID of the network storage to delete. Please ensure it exists before updating."),
  • src/tools.ts:600-615 (registration)
    Registration of the 'delete-network-storage' tool in the registerNetworkStorageTools function.
    server.tool("delete-network-storage", { storageId: z .string() .nonempty() .describe("The unique ID of the network storage to delete. Please ensure it exists before updating."), }, async (params) => { const result = await novitaRequest(`/networkstorage/delete`, "POST", params); 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