# pv-core-ivf-assess

`station__pv-compute__pv-core-ivf-assess` · external (needs EXECUTION_BACKEND_URL configured) · domain `pv-compute` · pv-relevance `pv-core`

Assess all 5 IVF axioms for an intervention (ToV §35)

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

- `deployment_scale` *number* (required)
- `emergence_uncertainty` *number* (required) — Uncertainty about emergence patterns (0.0-1.0)
- `potency` *number* (required) — Potency/power of intervention (0.0-1.0)
- `testing_completeness` *number* (required)
- `vulnerability_exposure` *number* (required) — Exposure to vulnerable populations (0.0-1.0)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__pv-compute__pv-core-ivf-assess",
    "arguments": {
      "deployment_scale": 0,
      "emergence_uncertainty": 0,
      "potency": 0,
      "testing_completeness": 0,
      "vulnerability_exposure": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/pv-compute__pv-core-ivf-assess](/tools/pv-compute__pv-core-ivf-assess) — HTML page
- [/tools/pv-compute__pv-core-ivf-assess/json](/tools/pv-compute__pv-core-ivf-assess/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
