# run-disproportionality-consensus

`station__microgram__run-disproportionality-consensus` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Consensus signal classifier across all 4 disproportionality measures (PRR, ROR, IC, EBGM). Counts how many methods detect a signal using standard thresholds and classifies as STRONG (4/4), MODERATE (3/4), WEAK (2/4), MARGINAL (1/4), or NONE (0/4). Feed pre-computed scores from compute_disproportionality_table or OpenVigil.

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

- `prr` *number* (required) — PRR value (signal threshold: >= 2.0)
- `ror_ci_lower` *number* (required) — ROR lower 95% CI (signal threshold: > 1.0)
- `ic025` *number* (required) — IC lower 95% credibility interval (signal threshold: > 0)
- `eb05` *number* (required) — EBGM 5th percentile (signal threshold: > 1.0)
- `n_cases` *integer* (required) — Number of reported cases (minimum 3 required)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-disproportionality-consensus",
    "arguments": {
      "prr": 0,
      "ror_ci_lower": 0,
      "ic025": 0,
      "eb05": 0,
      "n_cases": 0
    }
  }
}
```

## Related

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