# run-ich-e1-population-exposure

`station__microgram__run-ich-e1-population-exposure` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

ICH E1 Population Exposure decision tree. Routes minimum safety database size for drugs intended for long-term treatment of non-life-threatening conditions. Standard: 1500 total, 300-600 at 6 months, 100 at 12 months. Handles 5 exception categories and regional variants (US priority, Japan).

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

- `treatment_duration` *string* (required) — long_term (>6 months) or short_term
- `condition_severity` *string* (required) — non_life_threatening or life_threatening
- `has_exception` *boolean* — Whether an exception condition applies
- `exception_type` *string* — late_developing_ade, low_frequency_ade, small_benefit, background_morbidity, small_population
- `region` *string* — us, eu, japan
- `is_priority_drug` *boolean* — US priority drug designation

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-ich-e1-population-exposure",
    "arguments": {
      "treatment_duration": "",
      "condition_severity": ""
    }
  }
}
```

## Related

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