Skip to main content
Glama

get_cluster_status

Check the overall health and operational state of your VergeOS virtualization cluster to monitor performance and identify issues.

Instructions

Get the overall cluster status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function in VergeOSAPI class that executes the tool logic by making an HTTP request to the /api/v4/cluster_status endpoint.
    async getClusterStatus() { return this.request("/api/v4/cluster_status"); }
  • src/index.js:475-481 (registration)
    Tool registration in the TOOLS array, including name, description, and input schema (empty object since no params). Used by ListToolsRequestHandler.
    name: "get_cluster_status", description: "Get the overall cluster status", inputSchema: { type: "object", properties: {}, }, },
  • Dispatch case in the main CallToolRequestHandler that invokes the api.getClusterStatus() when the tool is called.
    case "get_cluster_status": result = await api.getClusterStatus(); break;
  • Input schema definition for the tool: an empty object since no input parameters are required.
    inputSchema: { type: "object", properties: {}, },

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/dvvincent/vergeos-mcp-server'

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