# Microgram: dna-evolve

`station__algovigilance__microgram-dna-evolve` · native (always callable) · domain `algovigilance` · pv-relevance `pv-core`

Run genetic algorithm evolution from seed DNA sequences toward a target word. Simulates natural selection with mutation, crossover, and fitness scoring over multiple generations.

## Agent metadata

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

## Input schema

- `seeds` *object* (required) — Initial DNA seed sequences (strings)
- `target` *string* (required) — Target word to evolve toward
- `generations` *number* — Number of generations (default: 100)
- `population_size` *number* — Population size per generation (default: 50)
- `mutation_rate` *number* — Mutation rate 0.0-1.0 (default: 0.01)

## Example call

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

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "station__algovigilance__microgram-dna-evolve",
    "arguments": {
      "seeds": {},
      "target": ""
    }
  }
}
```

## Related

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