# antivector_report

`station__antivector__antivector_report` · external (needs EXECUTION_BACKEND_URL configured) · domain `antivector` · pv-relevance `non-pv`

Generate a human-readable annihilation report for a drug-event pair. Shows all anti-vector components and final outcome.

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

- `bias_magnitude` *number* — Bias magnitude (0.0 to 1.0).
- `bias_type` *string* — Bias type to assess (optional).
- `confidence` *number* (required)
- `drug` *string* (required) — Drug or intervention name.
- `event` *string* (required) — Adverse event or harm outcome.
- `expected_attenuation` *number* — Expected attenuation from intervention (0.0 to 1.0).
- `harm_type` *string* (required) — Harm type letter: A-I.
- `intervention` *string* — Mechanistic intervention description (optional).
- `magnitude` *number* (required) — Signal magnitude (0.0 to 1.0).
- `pathway` *string* — Optional causal pathway description.

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__antivector__antivector_report",
    "arguments": {
      "confidence": 0,
      "drug": "",
      "event": "",
      "harm_type": "",
      "magnitude": 0
    }
  }
}
```

## Related

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