# run-config-ich-applicability

`station__microgram__run-config-ich-applicability` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

Gate ICH guideline applicability by code series and step

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

- `is_pv_relevant` *boolean* (required) — Input parameter: is_pv_relevant
- `guideline_code` *string* (required) — Input parameter: guideline_code
- `current_step` *integer* (required) — Input parameter: current_step

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-config-ich-applicability",
    "arguments": {
      "is_pv_relevant": false,
      "guideline_code": "",
      "current_step": 0
    }
  }
}
```

## Related

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