GuardianMemory

Privacy and limits

A memory bank is only worth having if you can see everything in it and stop anything reading it. Here is exactly what is stored, where it goes, and what the free caps are.

What is stored

DataWhy
Your email and a password hashSigning in to the web app
Each memory: the sentence, its tags, its source, and a 768-number vectorThe memory itself, and searching it by meaning
Recall count and last recalled time, per memoryOrdering your profile by what actually gets used
An activity row per operation: action, surface, client name, outcome, result count, durationThe Activity page, and the usage caps
API keys and OAuth tokens, stored as SHA-256 hashesAuthentication. The plaintext of a key is shown once and never again

Memories are scoped to your account. No other account can read them, and there is no shared pool.

Where memory text goes

Two services, and nowhere else:

Everything else — storage, search, the web app — happens inside GuardianMemory's own database.

Do not store secrets. Assistants are told this in their instructions, but it is worth repeating: passwords, keys and card numbers do not belong in a memory bank. GuardianMemory is a place for durable facts, not a vault.

Control you actually have

Usage caps

GuardianMemory is free while we learn what people need. Every create and every search costs one embedding call, so the caps are what keeps that sustainable.

CapDefault
Stored memories per account5,000
Creates and searches per account, per 24 hours2,000

Reading your profile is free and counts against neither. When a cap is reached, MCP tools return a readable message the assistant can pass on, and the REST API answers 429. Attempts that were refused are logged but never counted against the cap. Your standing is shown on the memories page and in GET /api/me.

Running your own

GuardianMemory is a small PHP application with no framework and no dependencies beyond PostgreSQL with pgvector. If you would rather the data sat on your own infrastructure, the repository's README covers running it with Docker locally and deploying it for real. The caps, the admin usage report and the invite-only mode are all configuration.