system_status
Monitor system health by checking CPU, memory, disk usage, and uptime for local or remote servers in your homelab environment.
Instructions
Get system status including CPU, memory, disk usage, and uptime
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| server | No | Remote server name from config (optional, runs locally if omitted) |
Implementation Reference
- web/src/lib/api.js:49-51 (handler)This function fetches the status of a specific server, which matches the required "system_status" tool functionality.
export function getServerStatus(name) { return fetchJSON(`/api/servers/${encodeURIComponent(name)}/status`); }