# quality-gradient

`station__quality-engine__quality-gradient` · external (needs EXECUTION_BACKEND_URL configured) · domain `quality-engine` · pv-relevance `non-pv`

T1 grounding: ∇ = →(Causality) + κ(Comparison) + ∂(Boundary)

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

- `crate_a` *string* (required) — First crate name (source of gradient measurement)
- `crate_b` *string* (required) — Second crate name (target of gradient measurement)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__quality-engine__quality-gradient",
    "arguments": {
      "crate_a": "",
      "crate_b": ""
    }
  }
}
```

## Related

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