# run-e2d-psur-interval-gate

`station__microgram__run-e2d-psur-interval-gate` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

ICH E2D Section 6 / ICH E2C(R2): Determines PSUR/PBRER submission interval and due date trigger based on product lifecycle and regulatory status

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

- `eu_registered` *boolean* (required) — Input parameter: eu_registered
- `under_additional_monitoring` *boolean* (required) — Input parameter: under_additional_monitoring
- `years_since_first_approval` *integer* (required) — Input parameter: years_since_first_approval
- `signal_identified` *boolean* (required) — Input parameter: signal_identified
- `ibdd_defined` *boolean* (required) — Input parameter: ibdd_defined

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-e2d-psur-interval-gate",
    "arguments": {
      "eu_registered": false,
      "under_additional_monitoring": false,
      "years_since_first_approval": 0,
      "signal_identified": false,
      "ibdd_defined": false
    }
  }
}
```

## Related

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