# run-fda-pregnancy-labeling

`station__microgram__run-fda-pregnancy-labeling` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

FDA pregnancy and lactation labeling decision tree: routes by data availability and risk level per FDA Guidance 'Pregnancy, Lactation, and Reproductive Potential: Labeling for Human Prescription Drug and Biological Products' (2015) and PLLR rule (21 CFR 201.57(c)(9))

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

- `animal_data_result` *string* (required) — Input parameter: animal_data_result
- `pregnancy_registry` *boolean* (required) — Input parameter: pregnancy_registry
- `human_data_available` *boolean* (required) — Input parameter: human_data_available
- `contraception_required` *boolean* (required) — Input parameter: contraception_required

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-fda-pregnancy-labeling",
    "arguments": {
      "animal_data_result": "",
      "pregnancy_registry": false,
      "human_data_available": false,
      "contraception_required": false
    }
  }
}
```

## Related

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