# run-caso-clinico-espanol

`station__microgram__run-caso-clinico-espanol` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Pipeline completo de evaluación de caso clínico en español. Grammar disambiguation (ser/estar + indicativo/subjuntivo) → temporal classification → epistemic weighting → ICH E2A seriousness → expectedness. 7-step chain preserving Spanish enrichment alongside standard ICSR outputs.

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

- `forma_verbal` *string* (required) — Ambiguous verb form to disambiguate (e.g. 'presente', 'cause')
- `verbo` *string* (required) — Ser/estar form: es/está/era/estaba/fue/estuvo etc.
- `sintoma` *string* — Síntoma clínico en español / Clinical symptom
- `verbo_contexto` *string* — Governing verb (creer/dudar/negar/esperar) for presente disambiguation
- `modo_verbal` *string* (required) — Verb mood indicator: indicativo/subjuntivo or conjugated form (tiene/tenga)
- `death` *boolean* (required) — ICH E2A: death occurred
- `hospitalization` *boolean* (required) — ICH E2A: hospitalization required
- `disability` *boolean* (required) — ICH E2A: persistent disability
- `life_threatening` *boolean* (required) — ICH E2A: life-threatening
- `congenital_anomaly` *boolean* (required) — ICH E2A: congenital anomaly
- `medically_important` *boolean* (required) — ICH E2A: medically important event
- `event_in_label` *boolean* (required) — Is the event listed in the drug label?
- `event_class_in_label` *boolean* — Is the event class listed in the label?
- `severity_in_label` *boolean* — Is the observed severity listed in the label?

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-caso-clinico-espanol",
    "arguments": {
      "forma_verbal": "",
      "verbo": "",
      "modo_verbal": "",
      "death": false,
      "hospitalization": false,
      "disability": false,
      "life_threatening": false,
      "congenital_anomaly": false,
      "medically_important": false,
      "event_in_label": false
    }
  }
}
```

## Related

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