# score-geometric

`station__noncompensatory__score-geometric` · external (needs EXECUTION_BACKEND_URL configured) · domain `noncompensatory` · pv-relevance `non-pv`

Compute non-compensatory risk score using weighted geometric mean. Default Bayesian-heavy weights [PRR=0.15, ROR=0.15, IC025=0.35, EBGM05=0.35] maximize signal-to-noise discrimination (validated via 40-scenario simulation). A near-zero dimension collapses the composite.

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

- `drug` *string* (required) — Drug name
- `event` *string* (required) — Adverse event
- `prr` *number* (required) — Proportional Reporting Ratio
- `ror_lower` *number* (required) — ROR lower 95% confidence interval
- `ic025` *number* (required) — Information Component 2.5th percentile
- `eb05` *number* (required) — EBGM 5th percentile
- `n` *integer* (required) — Number of cases
- `weights` *string* — Custom weights as comma-separated: PRR,ROR,IC025,EBGM05 (must sum to 1.0). Default: 0.15,0.15,0.35,0.35

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__noncompensatory__score-geometric",
    "arguments": {
      "drug": "",
      "event": "",
      "prr": 0,
      "ror_lower": 0,
      "ic025": 0,
      "eb05": 0,
      "n": 0
    }
  }
}
```

## Related

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