# Microgram: power-load-router

`station__algovigilance__microgram-power-load-router` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Routes power demand to the correct energy tier in a federated battery architecture. 4 tiers: main NMC (bulk), ultracap (burst), per-limb LFP (local), aux LFP (life-critical). Routes by demand magnitude, duration, and locality.

## Agent metadata

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

## Input schema

- `demand_kw` *number* (required) — Instantaneous power demand in kilowatts
- `duration_s` *number* (required) — Expected demand duration in seconds
- `locality` *string* — Which limb/zone needs power
- `main_bus_status` *string* — Main battery bus health
- `ultracap_soc` *number* — Ultracapacitor state of charge (0.0-1.0)
- `limb_buffer_soc` *number* — Target limb buffer SoC (0.0-1.0)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-power-load-router",
    "arguments": {
      "demand_kw": 0,
      "duration_s": 0
    }
  }
}
```

## Related

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