# run-e2a-expectedness-check

`station__microgram__run-e2a-expectedness-check` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

ICH E2A Section II.C: Determines expectedness of an adverse reaction — listed (expected) vs unlisted (unexpected) in the Reference Safety Information (RSI/IB/SmPC)

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

- `nature_matches` *boolean* (required) — Input parameter: nature_matches
- `rsi_available` *boolean* (required) — Input parameter: rsi_available
- `listed_in_smpc` *boolean* (required) — Input parameter: listed_in_smpc
- `listed_in_ib` *boolean* (required) — Input parameter: listed_in_ib
- `severity_exceeds_listed` *boolean* (required) — Input parameter: severity_exceeds_listed

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-e2a-expectedness-check",
    "arguments": {
      "nature_matches": false,
      "rsi_available": false,
      "listed_in_smpc": false,
      "listed_in_ib": false,
      "severity_exceeds_listed": false
    }
  }
}
```

## Related

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