# Microgram: signal-theory-parallel

`station__algovigilance__microgram-signal-theory-parallel` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Parallel signal detection across two independent detectors. Mode 'both' (AND) requires both to fire. Mode 'either' (OR) requires at least one.

## Agent metadata

- `idempotent`: true
- `read_only`: true
- `expected_latency_ms`: unknown (not yet contract-tested)
- `cost_tokens_estimate`: unknown

## Input schema

- `value` *number* (required) — Input parameter value.
- `threshold_1` *number* (required) — Input parameter threshold_1.
- `threshold_2` *number* (required) — Input parameter threshold_2.
- `label_1` *string* — Input parameter label_1.
- `label_2` *string* — Input parameter label_2.
- `mode` *string* — 'both' (AND) or 'either' (OR). Default: both

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-signal-theory-parallel",
    "arguments": {
      "value": 0,
      "threshold_1": 0,
      "threshold_2": 0
    }
  }
}
```

## Related

- [/tools](/tools) — all 7718 tools
- [/tools/algovigilance__microgram-signal-theory-parallel](/tools/algovigilance__microgram-signal-theory-parallel) — HTML page
- [/tools/algovigilance__microgram-signal-theory-parallel/json](/tools/algovigilance__microgram-signal-theory-parallel/json) — JSON form (agent-friendly)
- [/api/mcp](/api/mcp) — endpoint
- [/AGENTS.md](/AGENTS.md) — agent guide
