# run-e2a-medically-important-gate

`station__microgram__run-e2a-medically-important-gate` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

ICH E2A Section II.A.4: Medically important event gate — classifies events that may jeopardize patient or require intervention to prevent other seriousness outcomes. Covers the "medically important" catch-all seriousness criterion.

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

- `requires_urgent_medical_attention` *boolean* (required) — Input parameter: requires_urgent_medical_attention
- `meets_other_serious_criteria` *boolean* (required) — Input parameter: meets_other_serious_criteria
- `drug_dependency_event` *boolean* (required) — Input parameter: drug_dependency_event
- `intervention_prevented_serious_outcome` *boolean* (required) — Input parameter: intervention_prevented_serious_outcome
- `jeopardizes_patient` *boolean* (required) — Input parameter: jeopardizes_patient

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-e2a-medically-important-gate",
    "arguments": {
      "requires_urgent_medical_attention": false,
      "meets_other_serious_criteria": false,
      "drug_dependency_event": false,
      "intervention_prevented_serious_outcome": false,
      "jeopardizes_patient": false
    }
  }
}
```

## Related

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