# Microgram: algo-val-to-assess-bridge

`station__algovigilance__microgram-algo-val-to-assess-bridge` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Bridge microgram: maps signal-deep-validation outputs to pv-12-algorithm-assessment inputs. Implements Algorithm 3 (TRANSFER) between the two chains. confidence → evidence_sufficient, trend → tolerance_met, overall → decision_defined.

## Agent metadata

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

## Input schema

- `confidence` *number* (required) — Signal validation confidence (0-100)
- `trend` *string* (required) — Signal trend from trend-detector
- `overall` *string* (required) — Overall signal classification from multi-signal-combiner

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-algo-val-to-assess-bridge",
    "arguments": {
      "confidence": 0,
      "trend": "",
      "overall": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-algo-val-to-assess-bridge](/tools/algovigilance__microgram-algo-val-to-assess-bridge) — HTML page
- [/tools/algovigilance__microgram-algo-val-to-assess-bridge/json](/tools/algovigilance__microgram-algo-val-to-assess-bridge/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
