# score-case-completeness

`station__calculate__score-case-completeness` · external (needs EXECUTION_BACKEND_URL configured) · domain `calculate` · pv-relevance `non-pv`

Score ICSR completeness against E2B(R3) minimum data elements. Checks required fields (patient, reporter, drug, event) and recommended fields (age, sex, dates, outcome, causality).

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

- `patient_identifier` *string* (required) — Patient identifier (initials, number, or DOB)
- `reporter_identifier` *string* (required) — Reporter identifier (name or initials)
- `suspect_drug` *string* (required) — Suspect drug name
- `adverse_event` *string* (required) — Adverse event description
- `patient_age` *string* — Patient age or age group
- `patient_sex` *string* — Patient sex
- `event_onset_date` *string* — Date of event onset
- `drug_start_date` *string* — Date drug therapy started
- `drug_indication` *string* — Indication for drug use
- `event_outcome` *string* — Outcome of the event
- `reporter_country` *string* — Country of reporter
- `report_type` *string* — Report type (spontaneous, study, etc.)
- `seriousness_criteria` *string* — Seriousness assessment
- `causality_assessment` *string* — Causality assessment performed
- `action_taken` *string* — Action taken with suspect drug
- `rechallenge_info` *string* — Dechallenge/rechallenge information

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__calculate__score-case-completeness",
    "arguments": {
      "patient_identifier": "",
      "reporter_identifier": "",
      "suspect_drug": "",
      "adverse_event": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/calculate__score-case-completeness](/tools/calculate__score-case-completeness) — HTML page
- [/tools/calculate__score-case-completeness/json](/tools/calculate__score-case-completeness/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
