# run-hexim1-hypothesis-chain

`station__microgram__run-hexim1-hypothesis-chain` · external (needs EXECUTION_BACKEND_URL configured) · domain `microgram` · pv-relevance `pv-core`

End-to-end HEXIM1 hypothesis validation chain. Routes through signal scoring, convergence gating, and evidence quality to produce a final development recommendation. Integrates Campion Signal Theory with multi-omics convergence.

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

- `weakest_dimension` *string* (required) — Input parameter: weakest_dimension
- `dimensions_active` *number* (required) — Input parameter: dimensions_active
- `signal_score` *number* (required) — Input parameter: signal_score
- `convergence_verdict` *string* (required) — Input parameter: convergence_verdict
- `evidence_grade` *string* (required) — Input parameter: evidence_grade
- `has_replication_failure` *boolean* (required) — Input parameter: has_replication_failure

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__microgram__run-hexim1-hypothesis-chain",
    "arguments": {
      "weakest_dimension": "",
      "dimensions_active": 0,
      "signal_score": 0,
      "convergence_verdict": "",
      "evidence_grade": "",
      "has_replication_failure": false
    }
  }
}
```

## Related

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