# flywheel-vitals

`station__flywheel__flywheel-vitals` · external (needs EXECUTION_BACKEND_URL configured) · domain `flywheel` · pv-relevance `non-pv`

Useful for establishing a baseline or inspecting the default configuration.

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

- `automation_coverage` *number* — Automation coverage fraction [0.0, 1.0] (default 0.0).
- `churn_rate` *number* — Churn rate (default 0.0).
- `contributor_load` *number* — Contributor load factor (default 0.0).
- `execution_velocity` *number* — Execution velocity (default 0.0).
- `fatigue_cycle_count` *integer* — Fatigue cycle count (default 0).
- `knowledge_base_growth` *number* — Knowledge base growth rate (default 0.0).
- `manual_touchpoints` *integer* — Manual touchpoints count (default 0).
- `mission_alignment_score` *number* — Mission alignment score (default 0.0).
- `momentum` *number* — System momentum (default 0.0).
- `overhead_ratio` *number* — Overhead ratio (default 0.0).
- `pivot_resistance` *number* — Pivot resistance score (default 0.0).
- `recovery_time_days` *number* — Recovery time in days (default 0.0).
- `scope_creep_incidents` *integer* — Scope creep incident count (default 0).
- `switching_cost_index` *number* — Switching cost index (default 0.0).
- `value_density` *number* — Value density score (default 0.0).

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__flywheel__flywheel-vitals",
    "arguments": {}
  }
}
```

## Related

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