# Microgram: thermal-management-router

`station__algovigilance__microgram-thermal-management-router` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Routes thermal management actions based on zone temperature, heat flux, and cooling capacity. 5 zones (battery, motor, electronics, pilot, ambient). Escalates from passive cooling through active cooling to emergency shutdown.

## Agent metadata

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

## Input schema

- `zone` *string* (required) — Input variable zone
- `temperature_c` *number* (required) — Current zone temperature in Celsius
- `heat_flux_w` *number* — Current heat generation rate in watts
- `coolant_flow_available` *boolean* — Whether active liquid cooling loop is operational
- `ambient_temp_c` *number* — External ambient 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-thermal-management-router",
    "arguments": {
      "zone": "",
      "temperature_c": 0
    }
  }
}
```

## Related

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