# run-sota-authority-decompose

`station__microgram__run-sota-authority-decompose` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Decompose threshold authority into primitives — consensus breadth, credential strength, evidence basis, institutional backing — and score defensibility. Detects Takeda-pattern authority assertions (claims without defensible criteria). Returns authority class (SOVEREIGN/ESTABLISHED/EMERGING/CONTESTED/LONE/UNGROUNDED/ASSERTION), defensibility rating, vulnerability analysis, and recommendation.

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

- `consensus_level` *integer* (required) — Breadth of agreement: 1=single author, 2=research group, 3=professional society, 4=multi-society, 5=international harmonization (ICH/WHO)
- `credential_strength` *integer* (required) — Credentialing depth: 1=self-declared, 2=peer-recognized, 3=board-certified, 4=regulatory-designated, 5=statutory mandate
- `evidence_basis` *integer* (required) — Evidence grounding: 1=assertion only, 2=case-based, 3=empirical study, 4=validated framework, 5=replicated multi-site
- `institutional_backing` *integer* (required) — Institutional power: 1=individual, 2=academic dept, 3=professional body, 4=national regulator, 5=supranational (WHO/ICH/EMA)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-sota-authority-decompose",
    "arguments": {
      "consensus_level": 0,
      "credential_strength": 0,
      "evidence_basis": 0,
      "institutional_backing": 0
    }
  }
}
```

## Related

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