# Microgram: microgram-run-vehicle-full-cascade

`station__algovigilance__microgram-microgram-run-vehicle-full-cascade` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Run the complete vehicle cascade: bioavailability correction → PRR signal detection → causality assessment → Naranjo scoring → regulatory action → organ health signal. 6-step fuel-to-exhaust-to-dashboard pipeline. Returns correction_factor, signal verdict, regulatory action, AND engine health status.

## Agent metadata

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

## Input schema

- `observed_count` *number* — Number of adverse event reports observed in database
- `source_type` *string* — Report source: spontaneous, clinical_trial, literature, registry
- `prr` *number* (required) — Proportional Reporting Ratio value
- `naranjo_score` *number* (required) — Naranjo ADR probability score (0-13)
- `is_serious` *boolean* — Whether the adverse event meets ICH E2A seriousness criteria
- `ratio` *number* — Engine health ratio (violations/fleet_size, 0 = healthy)

## 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-vehicle-full-cascade",
    "arguments": {
      "prr": 0,
      "naranjo_score": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-microgram-run-vehicle-full-cascade](/tools/algovigilance__microgram-microgram-run-vehicle-full-cascade) — HTML page
- [/tools/algovigilance__microgram-microgram-run-vehicle-full-cascade/json](/tools/algovigilance__microgram-microgram-run-vehicle-full-cascade/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
