# run-rim-integrity

`station__microgram__run-rim-integrity` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Flywheel rim structural integrity classifier. THRIVING (tensile >= 110% of centrifugal force), CRITICAL (90-110%), DISINTEGRATED (< 90%). Requires pre-computed force_ratio = tensile/centrifugal (1.0 if both zero).

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

- `force_ratio` *number* (required) — Input parameter: force_ratio
- `tensile_strength` *number* (required) — Input parameter: tensile_strength
- `centrifugal_force` *number* (required) — Input parameter: centrifugal_force

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-rim-integrity",
    "arguments": {
      "force_ratio": 0,
      "tensile_strength": 0,
      "centrifugal_force": 0
    }
  }
}
```

## Related

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