Reflect Memory

Try Reflect Memory Private Deploy

Run a fully functional sandbox on your machine in 60 seconds. No account needed. No data leaves your computer. Everything resets when you stop the container.

What you get

  • Full API - write, read, list, delete, search
  • Same codebase as production private deploy
  • Self-host mode with egress disabled
  • 25 memory sandbox cap
  • Runs entirely on your machine

Sandbox limitations

  • - Data resets on container restart (ephemeral DB)
  • - 25 memory cap (production is configurable)
  • - No SSO, billing, or webhook support
  • - No /query or /chat (model egress disabled)
  • - Demo API key - not for production use

One command to start

terminal
docker run --rm -p 3000:3000 reflect-memory:sandbox

Requires Docker 20.10+. The container runs on port 3000 and stops cleanly with Ctrl+C. All data is ephemeral.

Test it

1. Check that it's running:

curl http://localhost:3000/health

2. Write your first memory:

curl -X POST http://localhost:3000/memories \
  -H "Authorization: Bearer sandbox-demo-key" \
  -H "Content-Type: application/json" \
  -d '{"title":"Hello from sandbox","content":"Testing private deploy.","tags":["test"]}'

3. Read it back:

curl -X POST http://localhost:3000/memories/list \
  -H "Authorization: Bearer sandbox-demo-key" \
  -H "Content-Type: application/json" \
  -d '{"filter":{"by":"all"},"limit":10}'

4. Confirm network isolation:

curl -X POST http://localhost:3000/query \
  -H "Authorization: Bearer sandbox-demo-key" \
  -H "Content-Type: application/json" \
  -d '{"query":"test","memory_filter":{"by":"all"}}'
# Returns 503 - no data leaves the container

What happens next

Schedule a walkthrough

We'll walk through your team's use cases and map them to Reflect Memory's API.

Scoped pilot

Designed together, tied to your success criteria. Your infrastructure, your data, your security review.

Production deploy

Same Docker image, production API key, persistent volume, optional SSO. You own the data.

Cleanup

The sandbox runs with --rm, so the container and all data are automatically deleted when you stop it. Nothing persists. Nothing to uninstall.

Ready for production?

The sandbox uses the same codebase as production. When you're ready, we'll design a scoped pilot together, tied to your success criteria.

Try Private Deploy | Reflect Memory