# run-site-dev-strategy-router

`station__microgram__run-site-dev-strategy-router` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

algovigilance site development strategy router. Checks 4 prerequisite gates in dependency order (Academy→Glass bridge, Microgram→Station wiring, Worked example, External traffic) and routes to the first unmet gate. Source: 20Q Scramble game session 2026-03-22.

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

- `worked_example_published` *boolean* (required) — Input parameter: worked_example_published
- `external_traffic_measured` *boolean* (required) — Input parameter: external_traffic_measured
- `microgram_station_wired` *boolean* (required) — Input parameter: microgram_station_wired
- `academy_glass_ready` *boolean* (required) — Input parameter: academy_glass_ready

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-site-dev-strategy-router",
    "arguments": {
      "worked_example_published": false,
      "external_traffic_measured": false,
      "microgram_station_wired": false,
      "academy_glass_ready": false
    }
  }
}
```

## Related

- [/tools](/tools) — all 3062 tools
- [/tools/microgram__run-site-dev-strategy-router](/tools/microgram__run-site-dev-strategy-router) — HTML page
- [/tools/microgram__run-site-dev-strategy-router/json](/tools/microgram__run-site-dev-strategy-router/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
