# Microgram: voltage-topology-tradeoff

`station__algovigilance__microgram-voltage-topology-tradeoff` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Evaluates 200V vs 400V bus topology for wearable power systems. Routes by voltage level and computes wire gauge, insulation weight, current magnitude, and motor efficiency tradeoffs. Higher voltage = thinner wire + better motor efficiency but harder insulation in a body-worn system.

## Agent metadata

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

## Input schema

- `bus_voltage_v` *number* (required) — Nominal bus voltage in volts
- `max_power_kw` *number* (required) — Maximum continuous power demand in kilowatts
- `total_wire_length_m` *number* — Total wiring run length in meters (default ~10m for exosuit)
- `environment` *string* — Operating environment — affects insulation requirements

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-voltage-topology-tradeoff",
    "arguments": {
      "bus_voltage_v": 0,
      "max_power_kw": 0
    }
  }
}
```

## Related

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