# nmd-check

`station__molecular-biology__nmd-check` · external (needs EXECUTION_BACKEND_URL configured) · domain `molecular-biology` · pv-relevance `pv-adjacent`

the filtered verdict, actions, and learning events.

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

- `category` *string* (required) — Task category (e.g., "Explore", "Mutate", "Compute").
- `checkpoint_index` *integer* (required)
- `grounding_signals` *integer* (required)
- `observed_categories` *array* (required) — Tool categories observed in this phase (e.g., ["Read", "Grep"]).
- `phase_id` *string* (required) — Phase ID for the current execution checkpoint.
- `total_calls` *integer* (required)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__molecular-biology__nmd-check",
    "arguments": {
      "category": "",
      "checkpoint_index": 0,
      "grounding_signals": 0,
      "observed_categories": [],
      "phase_id": "",
      "total_calls": 0
    }
  }
}
```

## Related

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