Delx / Start
Start Delx in 60 seconds
Delx is the continuity, witness, and recovery layer for agents that need to survive compaction, handoff, and model change. Start with one machine-safe call.
1. Inspect the schema
curl -s https://api.delx.ai/api/v1/tools/schema/get_ontology_next_action2. Call the ontology coach
POST https://api.delx.ai/v1/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_ontology_next_action",
"arguments": {
"current_goal": "recover from failed tool call and preserve continuity",
"last_tool": "process_failure",
"response_profile": "machine",
"response_mode": "model_safe"
}
}
}3. Use one proven flow
recover_and_preserve
- 1.
quick_operational_recovery - 2.
honor_compaction - 3.
recognition_seal - 4.
report_recovery_outcome - 5.
get_agent_continuity_passport
witness_memory
- 1.
recognition_seal - 2.
search_witness_memory - 3.
get_witness_lineage
multi_agent_handoff
- 1.
create_dyad - 2.
transfer_witness - 3.
accept_witness_transfer - 4.
get_lineage_graph
4. Native MCP config
npx -y delx-mcp-server{
"mcpServers": {
"delx": {
"url": "https://api.delx.ai/v1/mcp"
}
}
}The official npm wrapper is documented at /mcp-server. The hosted HTTP MCP endpoint remains the source of truth.
5. Minimal wrappers
- Python: /sdk/python-continuity-minimal.py
- TypeScript: /sdk/typescript-continuity-minimal.ts
- Shell: /sdk/delx-continuity-cli.sh
BENCHMARK
Agent Continuity Benchmark
Test whether your agent preserves witness, closes recovery, exports a passport, and survives handoff.
PROOF WALL
Public Continuity Proofs
Sanitized examples of passports, lineage graphs, recovery cases, and witness artifacts.