# run-session-scorecard

`station__microgram__run-session-scorecard` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Product Chain Scorecard: scores a session (or any work unit) on how far it advanced through the T1 primitive product chain. L0=Void identified, L1=State measured, L2=Compared, L3=Acted, L4=Persisted, L5=Shipped. Self-similar across scales: session, chain, directive, strategy.

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

- `state_measured` *boolean* (required) — Input parameter: state_measured
- `action_taken` *boolean* (required) — Input parameter: action_taken
- `change_shipped` *boolean* (required) — Input parameter: change_shipped
- `void_identified` *boolean* (required) — Input parameter: void_identified
- `compared_to_goal` *boolean* (required) — Input parameter: compared_to_goal
- `change_persisted` *boolean* (required) — Input parameter: change_persisted

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-session-scorecard",
    "arguments": {
      "state_measured": false,
      "action_taken": false,
      "change_shipped": false,
      "void_identified": false,
      "compared_to_goal": false,
      "change_persisted": false
    }
  }
}
```

## Related

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