# highway-destructive

`station__highway__highway-destructive` · external (needs EXECUTION_BACKEND_URL configured) · domain `highway` · pv-relevance `non-pv`

Compute destructive factor score for infrastructure stress.

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

- `avg_payload_bytes` *integer* (required) — Average payload size in bytes (weight)
- `avg_response_ms` *number* (required) — Average response time in ms (speed factor)
- `calls_per_hour` *number* (required) — Calls per hour (density)
- `error_rate` *number* (required) — Error rate 0.0-1.0
- `tool_name` *string* (required) — Tool name

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__highway__highway-destructive",
    "arguments": {
      "avg_payload_bytes": 0,
      "avg_response_ms": 0,
      "calls_per_hour": 0,
      "error_rate": 0,
      "tool_name": ""
    }
  }
}
```

## Related

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