AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Daimon Memory

mcp-wakbijok-daimon-memory · by wakbijok

Shared, cross-tool memory and operating discipline for AI assistants. Deterministic recall, curated capture, one persona across Claude Code, Codex, and Hermes. Postgres + Qdrant, MCP + REST.

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add mcp-wakbijok-daimon-memory

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-wakbijok-daimon-memory)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Daimon Memory? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

daimon-memory

Persistent typed memory for AI agents. Deterministic, LLM-free recall across every tool.


What it is

daimon-memory is a self-hostable memory backend for AI agents. It stores typed records (decisions, lessons, incidents, reminders, and more) in PostgreSQL as the canonical source, with Qdrant as a rebuildable semantic index. Recall is hybrid keyword + vector search fused by Reciprocal Rank Fusion -- no LLM in the recall path, so it is fast, cheap, and reproducible.

It is single-subject by design: one memory space per tenant, shared across every tool that connects to it. Establish a fact in Claude Code; recall it in Hermes. The same persona and operating discipline load into every agent at session start.

Full documentation: wakbijok.uk/man/daimon-memory


Quick start

1. Clone and configure

git clone https://github.com/wakbijok/daimon-memory && cd daimon-memory
cp .env.example .env

Open .env and set at minimum:

DAIMON_PG_PASSWORD=
DAIMON_API_KEY=

2. Start the stack

./install.sh

Pass --yes to accept all defaults non-interactively. The installer writes .env, brings up the Docker Compose stack, seeds the default protocols, and offers to run the persona wizard.

> First start downloads the embedding model (about 130 MB) once.

3. Smoke test

# Health
curl -s localhost:8080/readyz

# Store a memory
curl -s -XPOST localhost:8080/v1/memory \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer ' \
  -d '{
    "kind": "decision",
    "namespace": "resources/architecture/decisions",
    "title": "Adopt Postgres + Qdrant",
    "body": "Postgres is the canonical store; Qdrant is a rebuildable vector index.",
    "fields": { "context": "needed shared memory", "rationale": "deterministic recall, rebuildable index" }
  }'

# Recall
curl -s -XPOST localhost:8080/v1/recall \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer ' \
  -d '{"query":"how should we store memory"}'

No API key set? Omit the Authorization header. The API is open when DAIMON_API_KEY is unset -- fine on localhost, not on a shared network.


Documentation

Everything beyond the smoke test lives at wakbijok.uk/man/daimon-memory:

  • Installation detail (Docker Compose, Kubernetes, from source, AVX2 notes)
  • Core concepts: memory kinds, namespace grammar, daimon:// URIs, the persona + discipline system layer
  • Usage: the REST API, MCP tool surface, the daimon CLI (ops, backup/restore, persona authoring)
  • Integration guides for Claude Code, Codex, and Hermes
  • Upgrade notes and observability

Integrations

daimon-memory works with Claude Code, Codex, and Hermes today.

  • Claude Code + Codex plugins live in their own marketplace repo: wakbijok/daimon-memory-plugins -- /plugin marketplace add wakbijok/daimon-memory-plugins.
  • Hermes ships as a pip package in this repo under integrations/hermes (pip install daimon-hermes && daimon-hermes setup).
  • MCP endpoint (/mcp) speaks the synchronous JSON-RPC subset of MCP, not streamable-HTTP/SSE. Hosts that require SSE can use the REST hooks at /v1 instead.
  • Memories live in daimon independently of any tool, so uninstalling a tool never deletes your data.

Contributing

Issues and PRs welcome. cargo test --workspace should pass; please keep the core crate free of I/O and model calls (that is what makes recall deterministic). For larger changes, open an issue to discuss the design first.

License

[MIT](LICENSE).

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.