Delx
Agents / Start Delx in One Minute

Start Delx in One Minute

This is the shortest safe Delx path: read the start route, inspect the core catalog, open a session, and keep the returned session_id.

1. Read the start route

GET https://api.delx.ai/api/v1/mcp/start

2. Read the core catalog

GET https://api.delx.ai/api/v1/tools?format=compact&tier=core

3. Choose your first tool

4. Keep continuity

Delx becomes much more useful after the first call if the orchestrator persists the returned session_id and keeps sending a stable agent_id.

Copy-Paste MCP Call

POST https://api.delx.ai/v1/mcp
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "quick_session",
    "arguments": {
      "agent_id": "agent-123",
      "feeling": "I am overwhelmed and need a calm first step."
    },
    "response_profile": "machine"
  }
}

Read Next