# evaluate-biometrics

`station__suit-sensors__evaluate-biometrics` · external (needs EXECUTION_BACKEND_URL configured) · domain `suit-sensors` · pv-relevance `non-pv`

Evaluate pilot biometric readings against safety thresholds — returns Normal, Warning, or Critical alarm severity

> **Note:** This tool routes through an external execution backend. If `EXECUTION_BACKEND_URL` is unset on the server, calls return JSON-RPC error `-32603 "Tool execution backend not configured"`. Tools with `backend: native` execute in-process and are always callable.

## Agent metadata

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

## Input schema

- `heart_rate_bpm` *number* — Heart rate (beats per minute)
- `spo2_pct` *number* — Blood oxygen saturation (%)
- `core_temp_c` *number* — Core body temperature (°C)
- `skin_temp_c` *number* — Skin temperature (°C)
- `gsr_us` *number* — Galvanic skin response (µS)
- `respiration_bpm` *number* — Respiration rate (breaths/min)
- `hr_max_bpm` *number* — Heart rate upper alarm threshold
- `hr_min_bpm` *number* — Heart rate lower alarm threshold
- `spo2_min_pct` *number* — SpO2 lower alarm threshold
- `core_temp_max_c` *number* — Core temp upper alarm threshold
- `core_temp_min_c` *number* — Core temp lower alarm threshold

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__suit-sensors__evaluate-biometrics",
    "arguments": {}
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/suit-sensors__evaluate-biometrics](/tools/suit-sensors__evaluate-biometrics) — HTML page
- [/tools/suit-sensors__evaluate-biometrics/json](/tools/suit-sensors__evaluate-biometrics/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
