Skip to main content
Glama

list_nodes

Retrieve all nodes in a VergeOS cluster to monitor infrastructure, manage virtualization resources, and administer tenant operations.

Instructions

List all nodes in the VergeOS cluster

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function in VergeOSAPI class that lists cluster nodes by making an authenticated API request to /api/v4/nodes?fields=most.
    async listNodes() { return this.request("/api/v4/nodes?fields=most"); }
  • src/index.js:453-459 (registration)
    Tool registration entry in the TOOLS array, defining the tool name, description, and input schema (no parameters required). This list is returned by listTools handler.
    name: "list_nodes", description: "List all nodes in the VergeOS cluster", inputSchema: { type: "object", properties: {}, }, },
  • Dispatch case in the main CallToolRequestSchema handler that calls the listNodes implementation when the tool is invoked.
    case "list_nodes": result = await api.listNodes(); break;
  • Identical handler implementation in the HTTP+SSE server variant.
    async listNodes() { return this.request("/api/v4/nodes?fields=most"); }
  • Compact tool registration in the HTTP server TOOLS array.
    { name: "list_nodes", description: "List cluster nodes", 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