# Microgram: pilot-biometric-triage

`station__algovigilance__microgram-pilot-biometric-triage` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Triage pilot physiological state from biometric readings. Routes to NORMAL, WARNING, or CRITICAL with action guidance.

## Agent metadata

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

## Input schema

- `heart_rate_bpm` *number* (required) — Heart rate in beats per minute
- `spo2_pct` *number* (required) — Blood oxygen saturation percentage
- `core_temp_c` *number* (required) — Core body temperature in Celsius

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-pilot-biometric-triage",
    "arguments": {
      "heart_rate_bpm": 0,
      "spo2_pct": 0,
      "core_temp_c": 0
    }
  }
}
```

## Related

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