Eidolon Docs
EidolonDB

Quickstart

Quickstart

Install

npm install @eidolondb/client

Or run the full server with Docker:

docker run --name eidolondb -p 3000:3000 ghcr.io/millbj92/eidolondb:latest

1. Ingest your first memory

curl -X POST http://localhost:3000/ingest \
  -H "Content-Type: application/json" \
  -H "x-tenant-id: demo" \
  -d '{
    "text": "Deploy freeze is active until Monday.",
    "sessionId": "session-1"
  }'

2. Query memory

curl -X POST http://localhost:3000/memories/query \
  -H "Content-Type: application/json" \
  -H "x-tenant-id: demo" \
  -d '{
    "query": "Is deploy freeze active?",
    "limit": 5
  }'

3. Next