Skip to main content
Pages

Hosted Demo

Standalone memory service for AI tools, with durable memory, evidence, team isolation, and MCP access.

Hosted Demo

Use the hosted demo to test the shared-memory experience with disposable data:

https://demo-dense-mem.markhuang.ai

The deployed demo may lag the v2 architecture. Check runtime tool discovery before using it to validate behavior. This page does not hardcode changing quotas; the demo UI/runtime response owns its current limits.

Safety Boundary

  • use only disposable test data
  • never store secrets, credentials, personal data, production notes, or critical memory
  • demo teams/keys expire and may be cleaned without recovery
  • SSO/control-plane access is not part of the public demo
  • a generated key grants access to that temporary team; protect it for its lifetime

What The Demo Proves

Several clients using one key share one isolated team memory.

%%{init: {"flowchart": {"curve": "linear"}}}%%
flowchart LR
  Browser["Demo page"] --> Provision["Temporary team/profile/key"]
  Provision --> Key["One bearer key"]
  Key --> Claude["Claude Code"]
  Key --> Codex["Codex"]
  Claude --> Demo["Hosted /mcp"]
  Codex --> Demo
  Demo --> Team[("Same temporary team")]
  Team --> Expire["Expiry and cleanup"]

It proves cross-session/client access. It does not prove:

  • production durability or backup
  • target contract-v2 conformance unless advertised
  • multi-instance/Redis correctness
  • your own provider/privacy policy
  • migration or high-load behavior

Step 1: Generate A Key

Open the demo page, generate a temporary key, then keep it in the client environment:

bash
export DENSE_MEM_API_KEY="dm_..."

Use the same key for clients that should share the demo team. Generate another key for isolation.

Step 2: Connect Clients

Follow MCP Clients with:

https://demo-dense-mem.markhuang.ai/mcp

Run tool discovery. For target v2, verify that discovery/server metadata advertises Dense-Mem contract version 2 and that recall_memory returns relationship_id handles.

Step 3: Test Shared Memory

Client A:

Use Dense-Mem to remember that this demo project codename is river-lamp and I prefer concise answers with concrete commands.

Client B, using the same key:

Before answering, use Dense-Mem to recall the demo codename and response style.

A new chat with the same key should recall from Dense-Mem rather than the old chat transcript.

Step 4: Test Trace

Ask:

Show the Relationship Dense-Mem recalled for the demo codename and trace its supporting evidence.

On v2, normal recall should be compact and trace should use relationship_id to expand evidence/verification/history.

Step 5: Test Identity Ambiguity

Store two clearly distinguished people with the same first name, then submit an underspecified statement about that name. The safe v2 behavior is an identity_needs_review task and no speculative Entity/edge.

Do not choose a candidate unless the evidence identifies which person.

Step 6: Test A Correction

Ask to correct a prior preference and provide the new user statement as evidence. The safe behavior is:

  1. preserve prior evidence/history
  2. re-enter normal verification/policy
  3. commit the durable decision
  4. update PostgreSQL SemanticEdge/current rows atomically
  5. rebuild the versioned vector asynchronously
  6. expose processing and search state separately

Troubleshooting

SymptomCheck
tool names/fields differdeployed contract version and tools/list
another client sees nothingboth clients use exactly the same key
placement is not searchableinspect processing outcome, branch degradation, and search freshness
review task appearsshow the exact question; provide evidence/identity choice
quota/expiry errorcurrent limits on demo page/runtime response
v2 behavior unavailabledemo has not been upgraded; use a pinned local v2 release

Next

Use Quick Start for a pinned local deployment and Using Dense-Mem for the target workflow.