# schedule-limb-charge

`station__power-systems__schedule-limb-charge` · external (needs EXECUTION_BACKEND_URL configured) · domain `power-systems` · pv-relevance `non-pv`

Schedule per-limb buffer charging from main bus. Prioritizes lowest-SoC limb. Throttles when bus load rises. Prevents simultaneous all-limbs-charging bus overload.

> **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

- `main_bus_load_pct` *number* (required) — Current main bus utilization (0-100%)
- `left_arm_soc` *number* — Left arm buffer SoC (0.0-1.0)
- `right_arm_soc` *number* — Right arm buffer SoC (0.0-1.0)
- `left_leg_soc` *number* — Left leg buffer SoC (0.0-1.0)
- `right_leg_soc` *number* — Right leg 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__power-systems__schedule-limb-charge",
    "arguments": {
      "main_bus_load_pct": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/power-systems__schedule-limb-charge](/tools/power-systems__schedule-limb-charge) — HTML page
- [/tools/power-systems__schedule-limb-charge/json](/tools/power-systems__schedule-limb-charge/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
