# Microgram: adme-pipeline-health

`station__algovigilance__microgram-adme-pipeline-health` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Diagnose PV signal pipeline health using ADME pharmacokinetic primitives. Maps Absorb (intake), Distribute (triage), Metabolize (computation), Excrete (action) to pipeline stages and returns the failing primitive with fix guidance.

## Agent metadata

- `idempotent`: true
- `read_only`: true
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `absorb_ok` *boolean* (required) — Data sources responding and returning results
- `distribute_ok` *boolean* (required) — Triage/routing classifying cases to correct queues
- `metabolize_ok` *boolean* (required) — Signal detection producing correct disproportionality scores
- `excrete_ok` *boolean* (required) — Regulatory actions being generated from confirmed signals

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-adme-pipeline-health",
    "arguments": {
      "absorb_ok": false,
      "distribute_ok": false,
      "metabolize_ok": false,
      "excrete_ok": false
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-adme-pipeline-health](/tools/algovigilance__microgram-adme-pipeline-health) — HTML page
- [/tools/algovigilance__microgram-adme-pipeline-health/json](/tools/algovigilance__microgram-adme-pipeline-health/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
