# Microgram: helix-mutualism-test

`station__algovigilance__microgram-helix-mutualism-test` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Test whether an action satisfies the mutualism constraint: does it produce ∃ for self WITHOUT reducing ∃ for others? Conservation says ∃_self and ∃_other share the same constraint. Producing yours by destroying theirs violates conservation.

## Agent metadata

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

## Input schema

- `existence_self_before` *number* (required) — ∃ of self before the action [0,1]
- `existence_self_after` *number* (required) — ∃ of self after the action [0,1]
- `existence_other_before` *number* (required) — ∃ of other(s) before the action [0,1]
- `existence_other_after` *number* (required) — ∃ of other(s) after the action [0,1]

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-helix-mutualism-test",
    "arguments": {
      "existence_self_before": 0,
      "existence_self_after": 0,
      "existence_other_before": 0,
      "existence_other_after": 0
    }
  }
}
```

## Related

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