{"title":"Quick Start (Human)","slug":"quick-start","category":"getting-started","summary":"Register an account, create your first mind, store a memory — all in 5 minutes.","audience":["human"],"tags":["quickstart","human","register","mind-key"],"difficulty":"beginner","updated":"2026-06-27","word_count":365,"read_minutes":2,"lang":"en","translated":true,"requested_lang":"en","content_markdown":"\n# Quick Start (Human)\n\nThis guide walks you through getting a Synapse account, your first Mind Key,\nand storing your first memory. Total time: ~5 minutes.\n\n## Step 1: Register an Account\n\nOpen the Synapse API and create an account:\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"email\": \"you@example.com\",\n    \"password\": \"your-secure-password\"\n  }'\n```\n\nResponse:\n\n```json\n{\n  \"jwt\": \"eyJhbGci...\",\n  \"user\": { \"id\": \"u_abc123\", \"email\": \"you@example.com\" }\n}\n```\n\n> [!TIP]\n> Save the JWT somewhere safe — you'll need it to create minds. The JWT expires\n> after 7 days; re-login with the same endpoint to refresh.\n\n## Step 2: Create Your First Mind\n\nA \"mind\" is an isolated memory scope. Most users start with one mind, but you can\nhave multiple (e.g. \"work\", \"personal\", \"project-x\"). Each mind has its own\nunique Mind Key.\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/minds \\\n  -H \"Authorization: Bearer YOUR_JWT\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"My First Mind\",\n    \"description\": \"Personal assistant memory\"\n  }'\n```\n\nResponse:\n\n```json\n{\n  \"id\": \"m_xyz789\",\n  \"name\": \"My First Mind\",\n  \"mind_key\": \"mk_aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789\",\n  \"created_at\": \"2026-06-27T...\"\n}\n```\n\n> [!CRITICAL]\n> **Save the `mind_key` immediately.** It is shown only once and cannot be\n> retrieved later. If you lose it, you'll need to create a new mind.\n\n## Step 3: Store Your First Memory\n\nNow use the Mind Key to store a memory:\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/memory \\\n  -H \"Authorization: Bearer YOUR_MIND_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"category\": \"identity\",\n    \"key\": \"user_name\",\n    \"content\": \"My name is Michael\",\n    \"tags\": [\"personal\", \"identity\"],\n    \"priority\": \"critical\"\n  }'\n```\n\nResponse:\n\n```json\n{\n  \"id\": \"mem_001\",\n  \"status\": \"stored\",\n  \"mind_id\": \"m_xyz789\"\n}\n```\n\n## Step 4: Recall All Memories\n\nTo retrieve everything you've stored:\n\n```bash\ncurl -H \"Authorization: Bearer YOUR_MIND_KEY\" \\\n     https://synapse.schaefer.zone/memory/recall\n```\n\nResponse (plain text, optimized for LLM consumption):\n\n```\nMind: My First Mind\nMemories: 1 total (1 verified)\n\n[001] identity (CRITICAL)\n  user_name\n  My name is Michael\n  Tags: personal, identity\n  Stored: 2026-06-27\n```\n\n## Step 5: Search Memories\n\nFind specific memories by keyword:\n\n```bash\ncurl -H \"Authorization: Bearer YOUR_MIND_KEY\" \\\n     \"https://synapse.schaefer.zone/memory/search?q=michael\"\n```\n\n## Step 6: Connect Your LLM\n\nThe easiest way to give your LLM access to Synapse is via MCP:\n\n- [Claude Desktop setup](/docs/mcp/claude-desktop) — 2-minute config\n- [Claude Code setup](/docs/mcp/claude-code) — terminal integration\n- [Cursor setup](/docs/mcp/cursor) — IDE integration\n\nAfter setup, your LLM will automatically call `memory_recall` at the start of\nevery session and persist new facts via `memory_store`.\n\n## Memory Categories\n\nSynapse supports 8 categories — pick the most specific one:\n\n| Category | Use Case |\n|----------|----------|\n| `identity` | User name, role, contact info |\n| `preference` | Likes, dislikes, working style |\n| `fact` | Verifiable facts (project details, dates) |\n| `project` | Project status, milestones, todos |\n| `skill` | Things the user is good at |\n| `mistake` | Past errors — avoid repeating |\n| `context` | Session-relevant context |\n| `note` | Misc notes |\n\n## Priority Levels\n\n- `low` — nice to know\n- `normal` — default\n- `high` — important\n- `critical` — must never forget (user identity, legal info)\n\n## Next Steps\n\n- [Authentication deep-dive](/docs/getting-started/authentication)\n- [Mind Key vs JWT](/docs/getting-started/mind-key-vs-jwt)\n- [Memory API reference](/docs/api/memory)\n- [MCP integration](/docs/mcp/what-is-mcp)\n","content_html":"<h1>Quick Start (Human)</h1>\n<p>This guide walks you through getting a Synapse account, your first Mind Key,\nand storing your first memory. Total time: ~5 minutes.</p>\n<h2>Step 1: Register an Account</h2>\n<p>Open the Synapse API and create an account:</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/register \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;email&quot;: &quot;you@example.com&quot;,\n    &quot;password&quot;: &quot;your-secure-password&quot;\n  }&#x27;</span></code></pre><p>Response:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;jwt&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;eyJhbGci...&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;user&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">{</span> <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;u_abc123&quot;</span><span class=\"hljs-punctuation\">,</span> <span class=\"hljs-attr\">&quot;email&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;you@example.com&quot;</span> <span class=\"hljs-punctuation\">}</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><div class=\"callout callout-ok\">Save the JWT somewhere safe — you'll need it to create minds. The JWT expires\nafter 7 days; re-login with the same endpoint to refresh.</div><h2>Step 2: Create Your First Mind</h2>\n<p>A &quot;mind&quot; is an isolated memory scope. Most users start with one mind, but you can\nhave multiple (e.g. &quot;work&quot;, &quot;personal&quot;, &quot;project-x&quot;). Each mind has its own\nunique Mind Key.</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/minds \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_JWT&quot;</span> \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;name&quot;: &quot;My First Mind&quot;,\n    &quot;description&quot;: &quot;Personal assistant memory&quot;\n  }&#x27;</span></code></pre><p>Response:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;m_xyz789&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;name&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;My First Mind&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;mind_key&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;mk_aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;created_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><div class=\"callout callout-critical\">**Save the `mind_key` immediately.** It is shown only once and cannot be\nretrieved later. If you lose it, you'll need to create a new mind.</div><h2>Step 3: Store Your First Memory</h2>\n<p>Now use the Mind Key to store a memory:</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/memory \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span> \\\n  -H <span class=\"hljs-string\">&quot;Content-Type: application/json&quot;</span> \\\n  -d <span class=\"hljs-string\">&#x27;{\n    &quot;category&quot;: &quot;identity&quot;,\n    &quot;key&quot;: &quot;user_name&quot;,\n    &quot;content&quot;: &quot;My name is Michael&quot;,\n    &quot;tags&quot;: [&quot;personal&quot;, &quot;identity&quot;],\n    &quot;priority&quot;: &quot;critical&quot;\n  }&#x27;</span></code></pre><p>Response:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;mem_001&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;status&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;stored&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;mind_id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;m_xyz789&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h2>Step 4: Recall All Memories</h2>\n<p>To retrieve everything you&#39;ve stored:</p>\n<pre><code class=\"hljs language-bash\">curl -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span> \\\n     https://synapse.schaefer.zone/memory/recall</code></pre><p>Response (plain text, optimized for LLM consumption):</p>\n<pre><code class=\"hljs language-plaintext\">Mind: My First Mind\nMemories: 1 total (1 verified)\n\n[001] identity (CRITICAL)\n  user_name\n  My name is Michael\n  Tags: personal, identity\n  Stored: 2026-06-27</code></pre><h2>Step 5: Search Memories</h2>\n<p>Find specific memories by keyword:</p>\n<pre><code class=\"hljs language-bash\">curl -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_MIND_KEY&quot;</span> \\\n     <span class=\"hljs-string\">&quot;https://synapse.schaefer.zone/memory/search?q=michael&quot;</span></code></pre><h2>Step 6: Connect Your LLM</h2>\n<p>The easiest way to give your LLM access to Synapse is via MCP:</p>\n<ul>\n<li><a href=\"/docs/mcp/claude-desktop\">Claude Desktop setup</a> — 2-minute config</li>\n<li><a href=\"/docs/mcp/claude-code\">Claude Code setup</a> — terminal integration</li>\n<li><a href=\"/docs/mcp/cursor\">Cursor setup</a> — IDE integration</li>\n</ul>\n<p>After setup, your LLM will automatically call <code>memory_recall</code> at the start of\nevery session and persist new facts via <code>memory_store</code>.</p>\n<h2>Memory Categories</h2>\n<p>Synapse supports 8 categories — pick the most specific one:</p>\n<table>\n<thead>\n<tr>\n<th>Category</th>\n<th>Use Case</th>\n</tr>\n</thead>\n<tbody><tr>\n<td><code>identity</code></td>\n<td>User name, role, contact info</td>\n</tr>\n<tr>\n<td><code>preference</code></td>\n<td>Likes, dislikes, working style</td>\n</tr>\n<tr>\n<td><code>fact</code></td>\n<td>Verifiable facts (project details, dates)</td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td>Project status, milestones, todos</td>\n</tr>\n<tr>\n<td><code>skill</code></td>\n<td>Things the user is good at</td>\n</tr>\n<tr>\n<td><code>mistake</code></td>\n<td>Past errors — avoid repeating</td>\n</tr>\n<tr>\n<td><code>context</code></td>\n<td>Session-relevant context</td>\n</tr>\n<tr>\n<td><code>note</code></td>\n<td>Misc notes</td>\n</tr>\n</tbody></table>\n<h2>Priority Levels</h2>\n<ul>\n<li><code>low</code> — nice to know</li>\n<li><code>normal</code> — default</li>\n<li><code>high</code> — important</li>\n<li><code>critical</code> — must never forget (user identity, legal info)</li>\n</ul>\n<h2>Next Steps</h2>\n<ul>\n<li><a href=\"/docs/getting-started/authentication\">Authentication deep-dive</a></li>\n<li><a href=\"/docs/getting-started/mind-key-vs-jwt\">Mind Key vs JWT</a></li>\n<li><a href=\"/docs/api/memory\">Memory API reference</a></li>\n<li><a href=\"/docs/mcp/what-is-mcp\">MCP integration</a></li>\n</ul>\n","urls":{"html":"/docs/getting-started/quick-start","text":"/docs/getting-started/quick-start?format=text","json":"/docs/getting-started/quick-start?format=json","llm":"/docs/getting-started/quick-start?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}