Everything in one page

Top-to-bottom mnueron reference — install, use, integrate, build on.

The all-in-one preview of mnueron's documentation. Every capability is on this page so you can scan the whole product before deciding what to read deeply.

What mnueron is

One memory layer. Every AI tool. Every app you build. mnueron gives every AI you use the same long-term memory — Claude Desktop, Claude Code, Cursor, Windsurf, Cline, claude.ai, chatgpt.com, and any custom app you build with an OpenAI / Anthropic / Mistral / Gemini key.

Modes:

  • Local mode (free, forever): memories live at ~/.mnueron/memories.db on your machine. No account, no telemetry. Install the npm CLI and the setup wizard wires it into every AI tool you have installed.
  • Hosted mode (paid): memories sync across machines via https://www.mnueron.com. Free signup; paid tiers for higher volume + premium LLM features (entities, relations, runbook proposals, consolidation).

5-minute install

node --version    # need 20+
npm install -g mnueron
mnueron setup     # interactive wizard, detects + wires every AI tool

Restart whichever AI tool was wired. Open a new chat and ask: "what MCP tools do you have available?" — you should see memory_save, memory_recall, memory_list, memory_get, memory_delete, memory_get_thread, plus the procedural-memory tools.

Hosted-mode quick start

  1. Sign up at https://www.mnueron.com.
  2. Visit /account-settings/tokens → create a token → copy the mnu_... value.
  3. Use it as a bearer header against /api/... endpoints.
curl -H "Authorization: Bearer mnu_..." \
     "https://www.mnueron.com/api/memories?limit=5"

The six memory types

mnueron stores six conceptually distinct kinds of memory. All six live in the same memories table — what differs is the metadata and the recall path.

TypeCapturesRecall pattern
EpisodicRaw conversations as they happenedmemory_get_thread(parent_ref) rebuilds a conversation; memory_recall over the chunked turns
SemanticStandalone factsBM25 + (optional) vector search across memories
EntityCanonical people, projects, places/api/entities resolves "M. Mangal" ≡ "Maya Mangal" ≡ "Maya"
RelationalWho knows whom, what depends on what/api/relations returns the graph slice — viewable on /dashboard/graph
Procedural"Here's how to do X" runbooks/api/recall/unified matches trigger phrases; chat agent emits ```runbook``` JSON cards
Consolidation"This is a duplicate" proposals/api/consolidate?action=propose finds overlaps; /dashboard/consolidate reviews

Read the memory types explainer for the deep version with examples.

REST API

VerbPathPurpose
POST/api/memoriesSave. Auto-synopsis fires when content > 800 chars and gate is on.
GET/api/memories?q=...Full-text search with date + metadata filters.
GET/api/memories/:idSingle memory by id. Auto-logs a recall.
PATCH/api/memories/:idPartial update. Metadata merged. History audit trail.
DELETE/api/memories/:idRemove (RLS-scoped).
POST/api/memories/search/bulkUp to 25 queries in one round-trip.
GET/api/namespacesList your namespaces with counts.
POST/api/recall/unifiedHybrid: returns matching memories AND runbooks.
POST/api/proceduralSave a runbook.
GET/api/proceduralList runbooks.
GET/api/entitiesList + filter entities (paid).
GET/api/relationsGraph slice (paid).
GET, POST/api/consolidateDuplicate-merge queue + apply (paid).
POST/api/chatOne-shot dashboard chat completion.
GET, POST/api/chat/sessionsChat session CRUD.
GET, POST, PUT, DELETE/api/webhooksHMAC-SHA256 signed deliveries.
GET/api/healthLiveness probe (no auth).
POST, GET, DELETE/api/auth/tokensToken CRUD.

All write endpoints honor your org's quota; LLM-backed endpoints (chat, entity extraction, consolidator merge) require either a paid plan or a BYOK key (x-anthropic-key / x-openai-key headers).

SDKs

  • Pythonpip install mnueron
  • TypeScriptnpm install @mnueron/sdk
  • .NET / C# — drop MnueronClient.cs into any project
  • VS Code — install mnueron — AI memory from the Marketplace

Identical surface across all four. See the SDK overview.

Integrations (auto-wired by mnueron setup)

  • Claude Desktop, Claude Code, Cursor, Windsurf, Cline
  • Planned: Continue.dev, Zed, Aider, Goose, OpenCode
  • Chrome / Firefox extension (claude.ai, chatgpt.com, gemini.google.com)
  • VS Code extension panel

Dashboard surfaces (mnueron.com)

  • /dashboard — memory list, filters, pagination, decay + recall chips
  • /dashboard/chat — conversational chat agent backed by your memories
  • /dashboard/analytics — KPIs, time-series, leaderboard
  • /dashboard/entities — entity canonical list (paid)
  • /dashboard/entities/[id] — entity detail with linked memories
  • /dashboard/graph — force-directed relation graph (paid)
  • /dashboard/procedural — runbook library
  • /dashboard/consolidate — duplicate-review queue (paid)
  • /dashboard/context-builder — assemble a context bundle from saved memories

Pricing

  • Free Local — $0 forever, fully featured local mode.
  • Personal — $9/mo, hosted sync + cross-machine.
  • Pro — $19/mo, unlimited memories, retention, audit log.
  • Team — $25/user/mo (min 3), shared namespaces, RBAC.
  • Enterprise — custom, SSO, BAA, SLA.
Last updated 2026-05-26edit