# Microgram: sota-frontier-check

`station__algovigilance__microgram-sota-frontier-check` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

SOTA Tracker: evaluates whether a finding represents frontier movement in a PV domain based on evidence level and authority weight

## Agent metadata

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

## Input schema

- `evidence_level` *number* (required) — Strength of evidence (1=opinion, 2=case series, 3=observational, 4=RCT, 5=systematic review/meta-analysis)
- `authority_weight` *number* (required) — Threshold authority recognition (1=preprint, 2=peer-reviewed, 3=guideline-cited, 4=regulatory-adopted, 5=ICH/WHO standard)
- `novelty_score` *number* — How novel vs current frontier (0=known, 25=incremental, 50=significant, 75=paradigm-adjacent, 100=paradigm-shift)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-sota-frontier-check",
    "arguments": {
      "evidence_level": 0,
      "authority_weight": 0
    }
  }
}
```

## Related

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