Skip to main content
Glama
ycyun

ABLESTACK MOLD MCP Server

by ycyun

mold_stopVirtualMachine

Stop a virtual machine in ABLESTACK MOLD cloud infrastructure. Supports forced shutdown option and returns job ID for tracking.

Instructions

stopVirtualMachine(4.21). forced 옵션 지원. 반환에 jobid 포함 가능.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
forcedNo

Implementation Reference

  • Handler function that executes the tool by calling the generic MOLD API 'stopVirtualMachine' with provided arguments and returns the JSON response.
    async (args) => { const data = await callApi("stopVirtualMachine", args); return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] }; }
  • Input schema defining parameters: id (required string), forced (optional boolean).
    inputSchema: { id: z.string(), forced: z.boolean().optional(), },
  • Registration of the 'mold_stopVirtualMachine' tool, including title, description, input schema, and handler function.
    server.registerTool( "mold_stopVirtualMachine", { title: "VM 정지", description: "stopVirtualMachine(4.21). forced 옵션 지원. 반환에 jobid 포함 가능.", inputSchema: { id: z.string(), forced: z.boolean().optional(), }, }, async (args) => { const data = await callApi("stopVirtualMachine", 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