Skip to main content
Glama
ycyun

ABLESTACK MOLD MCP Server

by ycyun

mold_startVirtualMachine

Start a virtual machine in ABLESTACK MOLD to launch cloud instances, supporting optional parameters for host, cluster, pod selection, boot setup, and last host consideration.

Instructions

startVirtualMachine(4.21). 반환에 jobid가 포함될 수 있음(비동기).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
hostidNo
clusteridNo
podidNo
considerlasthostNo
bootintosetupNo

Implementation Reference

  • Registration of the 'mold_startVirtualMachine' MCP tool, including input schema and handler function that delegates to the underlying MOLD 'startVirtualMachine' API via callApi.
    server.registerTool(
      "mold_startVirtualMachine",
      {
        title: "VM 시작",
        description: "startVirtualMachine(4.21). 반환에 jobid가 포함될 수 있음(비동기).",
        inputSchema: {
          id: z.string(),
          hostid: z.string().optional(),
          clusterid: z.string().optional(),
          podid: z.string().optional(),
          considerlasthost: z.boolean().optional(),
          bootintosetup: z.boolean().optional(),
        },
      },
      async (args) => {
        const data = await callApi("startVirtualMachine", args);
        return { content: [{ type: "text", text: JSON.stringify(data, 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/ycyun/ablestack-MCP-server'

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