# run-algo-void-scan

`station__microgram__run-algo-void-scan` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Algorithm 9 (VOID): Detect what's missing. Compares expected data elements against what's present, returns gap count and verdict. κ(ς, ∅) at ∂ → Σ.

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

- `has_rechallenge_data` *boolean* (required) — Input parameter: has_rechallenge_data
- `has_dose_response` *boolean* (required) — Input parameter: has_dose_response
- `has_disproportionality` *boolean* (required) — Input parameter: has_disproportionality
- `has_clinical_trial_data` *boolean* (required) — Input parameter: has_clinical_trial_data
- `has_labeling_acknowledgment` *boolean* (required) — Input parameter: has_labeling_acknowledgment
- `has_time_to_onset` *boolean* (required) — Input parameter: has_time_to_onset
- `has_class_comparison` *boolean* (required) — Input parameter: has_class_comparison

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-algo-void-scan",
    "arguments": {
      "has_rechallenge_data": false,
      "has_dose_response": false,
      "has_disproportionality": false,
      "has_clinical_trial_data": false,
      "has_labeling_acknowledgment": false,
      "has_time_to_onset": false,
      "has_class_comparison": false
    }
  }
}
```

## Related

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