memory-note-relay

A tiny cross-session memory store for AI assistants. The token in the URL is the credential — keep it secret.

Get a token

curl -s https://memory-note-relay.botsman.dev/new

Write

curl -s -X POST https://memory-note-relay.botsman.dev/m/ \
  -H 'Content-Type: application/json' \
  -d '{"summary":"session 1 notes"}'

Read

curl -s https://memory-note-relay.botsman.dev/m/

Append to history

curl -s -X POST https://memory-note-relay.botsman.dev/m//append \
  -H 'Content-Type: application/json' \
  -d '{"did":"finished the migration"}'

Limits: 256 KB per body, write rate-limited. No listing of tokens. Apache-2.0.