# Microgram: system-vitals

`station__algovigilance__microgram-system-vitals` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

System resource health classifier: RAM, swap, disk, cache. GREEN (all healthy), YELLOW (1 metric stressed), RED (2+ stressed or any critical). Feeds Guardian homeostasis for automated resource management.

## Agent metadata

- `idempotent`: true
- `read_only`: true
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `ram_available_mb` *number* (required) — Input variable ram_available_mb
- `swap_free_mb` *number* (required) — Input variable swap_free_mb
- `disk_free_gb` *number* (required) — Input variable disk_free_gb
- `cache_gb` *number* (required) — Input variable cache_gb
- `active_rustc` *number* — Input variable active_rustc

## Example call

```json
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-system-vitals",
    "arguments": {
      "ram_available_mb": 0,
      "swap_free_mb": 0,
      "disk_free_gb": 0,
      "cache_gb": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-system-vitals](/tools/algovigilance__microgram-system-vitals) — HTML page
- [/tools/algovigilance__microgram-system-vitals/json](/tools/algovigilance__microgram-system-vitals/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
