VergeOS MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| VERGEOS_HOST | No | Your VergeOS host address | |
| VERGEOS_PASS | No | VergeOS password | |
| VERGEOS_USER | No | VergeOS username (typically 'admin') | |
| VERGEOS_TOKEN | No | VergeOS API token (recommended instead of username/password) | |
| VERGEOS_MCP_URL | No | The URL of the remote MCP server (for local proxy configuration) | https://vergeos-mcp.yourdomain.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_vmsB | List all virtual machines in VergeOS. Can filter by running status or name. |
| get_vmB | Get detailed information about a specific VM by ID |
| get_vm_statusC | Get the current status of a VM (running, stopped, etc.) |
| power_on_vmC | Power on a virtual machine |
| power_off_vmC | Power off a virtual machine (graceful shutdown) |
| reset_vmC | Reset/reboot a virtual machine |
| get_vm_nicsC | Get network interfaces for a VM |
| get_vm_drivesC | Get disk drives for a VM |
| list_networksB | List all virtual networks in VergeOS |
| get_networkC | Get detailed information about a specific network |
| network_actionC | Perform an action on a network (poweron, poweroff, reset, apply) |
| list_tenantsB | List all tenants in VergeOS |
| get_tenantC | Get detailed information about a specific tenant |
| tenant_actionC | Perform an action on a tenant (poweron, poweroff, reset) |
| list_nodesB | List all nodes in the VergeOS cluster |
| get_node_statsC | Get statistics for a specific node |
| get_cluster_statusB | Get the overall cluster status |
| get_cluster_statsB | Get cluster tier statistics (storage tiers) |
| list_volumesB | List all storage volumes |
| get_logsC | Get recent system logs |
| get_alarmsB | Get active system alarms |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Cluster Status | Current VergeOS cluster status and health |
| Virtual Machines | List of all virtual machines |
| Virtual Networks | List of all virtual networks |
| Active Alarms | Current active system alarms |
TDQS
Scored across 21 tools
Most tools have distinct purposes, but there is some overlap between 'get_vm_status' and 'get_vm' (which includes status details), and 'network_action' and 'tenant_action' are generic action tools that could be confused with more specific ones like 'power_on_vm'. Descriptions help clarify, but minor ambiguity exists.
Tool names follow a consistent verb_noun pattern throughout, such as 'get_alarms', 'list_networks', and 'power_off_vm'. All tools use snake_case with clear, predictable naming, making them easily readable and organized.
With 21 tools, the count is slightly high but reasonable for a comprehensive VergeOS management server covering clusters, networks, tenants, VMs, and volumes. It provides detailed operations without being overly bloated, though it borders on heavy.
The tool set offers strong coverage for monitoring and basic VM/network/tenant management, including CRUD-like operations (e.g., list/get and actions). Minor gaps exist, such as no explicit tools for creating or deleting VMs, networks, or tenants, but agents can likely work around this using existing action tools.