# Microgram: microgram-run-adapt-faers-to-disproportionality

`station__algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Adapter: transforms openFDA FAERS drug_event counts into the input shape needed by PRR/disproportionality computation. Takes raw FAERS counts (drug_event, drug_total, event_total, all_total) and classifies whether there is sufficient data to compute PRR, plus passes through for calculation.

## Agent metadata

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

## Input schema

- `drug_event_count` *number* (required) — Input parameter: drug_event_count
- `all_total` *number* (required) — Input parameter: all_total
- `drug_total` *number* (required) — Input parameter: drug_total
- `event_total` *number* (required) — Input parameter: event_total

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality",
    "arguments": {
      "drug_event_count": 0,
      "all_total": 0,
      "drug_total": 0,
      "event_total": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality](/tools/algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality) — HTML page
- [/tools/algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality/json](/tools/algovigilance__microgram-microgram-run-adapt-faers-to-disproportionality/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
