Try mnueron in 5 minutes

A clean recipe to verify mnueron works end-to-end with your own account.

This guide walks you from "never heard of mnueron" to "I just saved a memory in Claude and recalled it from ChatGPT" in about 5 minutes. Use it to evaluate the product or onboard a colleague.

Step 1 — sign up (30 sec)

  1. Visit https://www.mnueron.com.
  2. Click Sign up → email + password.
  3. You land on /dashboard with an empty memory list.

Step 2 — get a token (15 sec)

  1. From dashboard, top nav → Settings → API Tokens. Or direct: /account-settings/tokens.
  2. Create token → name it "test" → copy the mnu_... string.
  3. Stash it in a password manager. mnueron only shows it once.

Step 3 — save a memory via API (1 min)

PowerShell:

${token} = "mnu_..."
${h} = @{ Authorization = "Bearer ${token}"; "Content-Type" = "application/json" }
${body} = @{
  content   = "I prefer Tailwind CSS over plain CSS for new projects."
  namespace = "preferences"
  tags      = @("style","ui")
} | ConvertTo-Json -Depth 5

Invoke-RestMethod -Method POST -Uri "https://www.mnueron.com/api/memories" -Headers ${h} -Body ${body}

curl / bash:

curl -X POST "https://www.mnueron.com/api/memories" \
     -H "Authorization: Bearer ${TOKEN}" \
     -H "Content-Type: application/json" \
     -d '{"content":"I prefer Tailwind CSS over plain CSS for new projects.","namespace":"preferences","tags":["style","ui"]}'

Step 4 — recall it (15 sec)

curl -H "Authorization: Bearer ${TOKEN}" \
     "https://www.mnueron.com/api/memories?q=tailwind"

You should get back the memory you saved with a relevance score.

Step 5 — see it across tools

Install the mnueron CLI on your machine:

npm install -g mnueron
mnueron setup

The setup wizard detects your AI tools (Claude Desktop, Cursor, Windsurf, Cline, Continue, Zed, etc.) and wires the same memory layer into each. In any of those tools, ask the AI about your style preferences and it should recall the Tailwind memory you just saved via API.

Step 6 (optional) — try auto-synopsis with your own API key

If you have an OpenAI or Anthropic API key, save a longer memory and let mnueron auto-summarize it. Your key is used for ONE call and stripped from the saved row.

${openaiKey} = "sk-..."   # never paste in chat or commit anywhere
${long} = "A" * 800 + " ...your real long content here..."
${body} = @{
  content   = ${long}
  namespace = "test"
  metadata  = @{ summarize = ${true}; byok_openai_key = ${openaiKey} }
} | ConvertTo-Json -Depth 5
Invoke-RestMethod -Method POST -Uri "https://www.mnueron.com/api/memories" -Headers ${h} -Body ${body}

Fetch the memory back — metadata.summary is populated, byok_openai_key is gone.

What to do next

Last updated 2026-05-17edit