Skip to main content
Glama

get_alarms

Retrieve active system alarms from VergeOS virtualization platforms to monitor cluster health and identify operational issues.

Instructions

Get active system alarms

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Core handler function for the get_alarms tool. Makes an authenticated API request to the VergeOS endpoint /api/v4/alarms?fields=most to retrieve active system alarms.
    async getAlarms() { return this.request("/api/v4/alarms?fields=most"); }
  • Schema definition for the get_alarms tool, including name, description, and empty input schema (no parameters required). Part of the TOOLS array used for ListTools response.
    name: "get_alarms", description: "Get active system alarms", inputSchema: { type: "object", properties: {}, }, },
  • src/index.js:606-611 (registration)
    Tool registration and dispatch logic in the MCP CallToolRequestSchema handler. The switch case for "get_alarms" invokes the api.getAlarms() handler.
    case "get_logs": result = await api.getLogs(args?.limit || 50); break; case "get_alarms": result = await api.getAlarms(); break;

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