# Microgram: route-regulatory-action

`station__algovigilance__microgram-route-regulatory-action` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Compose a regulatory action from the upstream PV chain: signal detection result, seriousness classification, causality band, and expedited timeline. Emits one of FILE (expedited timeline + probable+ causality), WATCH (signal detected + serious), ESCALATE (signal + serious + definite causality), or DISMISS (no signal or doubtful causality). Top-level composer of the canonical PV chain.

## Agent metadata

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

## Input schema

- `is_serious` *any* (required)
- `severity` *any* (required)
- `expectedness` *any* (required)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-route-regulatory-action",
    "arguments": {
      "is_serious": "",
      "severity": "",
      "expectedness": ""
    }
  }
}
```

## Related

- [/tools](/tools) — all 3069 tools
- [/tools/algovigilance__microgram-route-regulatory-action](/tools/algovigilance__microgram-route-regulatory-action) — HTML page
- [/tools/algovigilance__microgram-route-regulatory-action/json](/tools/algovigilance__microgram-route-regulatory-action/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
