{"title":"General FAQ","slug":"general","category":"faq","summary":"Common questions about Synapse — what it is, how it works, who it's for.","audience":["human","llm"],"tags":["faq","general","intro"],"difficulty":"beginner","updated":"2026-06-27","word_count":543,"read_minutes":3,"lang":"en","translated":true,"requested_lang":"en","content_markdown":"\n# General FAQ\n\nCommon questions about Synapse.\n\n## What is Synapse?\n\nSynapse is a persistent memory API for LLM agents. It gives your AI assistant\na permanent, queryable brain that survives across sessions. Instead of\nforgetting everything when the chat closes, the LLM stores and retrieves\nmemories via a simple HTTP API.\n\n**Learn more:** [What is Synapse?](/docs/getting-started/what-is-synapse)\n\n## Who is Synapse for?\n\n- **LLM agent developers** who need persistent state\n- **Power users** running local LLMs with custom agents\n- **Teams** building AI assistants with shared memory\n- **Automation engineers** chaining LLM calls across sessions\n\n## Is Synapse free?\n\nSynapse is hosted at <https://synapse.schaefer.zone> and free for personal use.\nFor self-hosting, see the [repo](https://gitlab.com/schaefer-services/synapse).\n\n## How is Synapse different from ChatGPT Memory?\n\n| Feature | ChatGPT Memory | Synapse |\n|---------|---------------|---------|\n| Storage | OpenAI servers | Your server |\n| API access | No | Yes (REST + MCP) |\n| Multi-tenant | No | Yes (minds) |\n| Custom categories | No | Yes (8 categories) |\n| Full-text search | Limited | FTS5 + semantic |\n| Self-hostable | No | Yes |\n\n## What LLMs work with Synapse?\n\nAny LLM that can make HTTP calls or use MCP:\n\n- Claude (Anthropic) — via MCP or direct API\n- GPT-4 / GPT-3.5 (OpenAI) — via function calling + API\n- Gemini (Google) — via function calling + API\n- Llama / Mistral (local) — via custom integration\n- Any LLM via the Synapse MCP server\n\n## Do I need to host Synapse myself?\n\nNo. The hosted version at <https://synapse.schaefer.zone> is available for\npublic use. Self-hosting is optional (for privacy, customization, or\nair-gapped environments).\n\n## How much data can I store?\n\nThere are no hard limits on the hosted version. Typical usage:\n\n- 100-1000 memories per mind\n- 1-10 KB per memory (content field)\n- Total: ~10 MB per mind\n\nFor larger scale, self-host.\n\n## Is my data private?\n\nYes. Each mind is isolated (see [Multi-Tenancy](/docs/concepts/multi-tenancy)).\nOther users cannot see your data. The hosting provider (Schäfer Services)\nhas access but does not view user data.\n\nFor maximum privacy, self-host.\n\n## Can I export my data?\n\nYes. Use `GET /memory/mind-export` to export all memories as JSON. See\n[Backup & Restore](/docs/guides/backup-restore).\n\n## What happens if I lose my Mind Key?\n\nMind Keys are shown only once at creation. If lost:\n\n1. Login with your email/password to get a JWT\n2. Create a new mind via `POST /minds`\n3. Save the new Mind Key\n4. (Optional) Delete the old mind via `DELETE /minds/:id`\n\nYou cannot recover memories from a mind whose key is lost.\n\n## Can multiple LLM agents share a mind?\n\nYes. All agents using the same Mind Key share that mind's data. For\ncoordinated multi-agent work, see [Multi-Agent Coordination](/docs/guides/multi-agent-coordination).\n\n## Does Synapse work offline?\n\nNo, Synapse requires an internet connection to the server (either hosted or\nself-hosted). For offline LLMs, run Synapse locally.\n\n## How fast is memory search?\n\n- FTS5 keyword search: < 10ms for 1000 memories\n- Semantic search: 50-100ms for 1000 memories\n- Full recall: < 50ms for 1000 memories\n\nSee [FTS5 Search](/docs/concepts/fts5-search) for details.\n\n## Can I use Synapse without an LLM?\n\nYes. Synapse is a generic memory API. You can use it from any application\nthat benefits from persistent, searchable key-value storage with categories\nand tags.\n\n## Next Steps\n\n- [What is Synapse?](/docs/getting-started/what-is-synapse)\n- [Quick Start](/docs/getting-started/quick-start)\n- [API FAQ](/docs/faq/api-faq)\n","content_html":"<h1>General FAQ</h1>\n<p>Common questions about Synapse.</p>\n<h2>What is Synapse?</h2>\n<p>Synapse is a persistent memory API for LLM agents. It gives your AI assistant\na permanent, queryable brain that survives across sessions. Instead of\nforgetting everything when the chat closes, the LLM stores and retrieves\nmemories via a simple HTTP API.</p>\n<p><strong>Learn more:</strong> <a href=\"/docs/getting-started/what-is-synapse\">What is Synapse?</a></p>\n<h2>Who is Synapse for?</h2>\n<ul>\n<li><strong>LLM agent developers</strong> who need persistent state</li>\n<li><strong>Power users</strong> running local LLMs with custom agents</li>\n<li><strong>Teams</strong> building AI assistants with shared memory</li>\n<li><strong>Automation engineers</strong> chaining LLM calls across sessions</li>\n</ul>\n<h2>Is Synapse free?</h2>\n<p>Synapse is hosted at <a href=\"https://synapse.schaefer.zone\">https://synapse.schaefer.zone</a> and free for personal use.\nFor self-hosting, see the <a href=\"https://gitlab.com/schaefer-services/synapse\">repo</a>.</p>\n<h2>How is Synapse different from ChatGPT Memory?</h2>\n<table>\n<thead>\n<tr>\n<th>Feature</th>\n<th>ChatGPT Memory</th>\n<th>Synapse</th>\n</tr>\n</thead>\n<tbody><tr>\n<td>Storage</td>\n<td>OpenAI servers</td>\n<td>Your server</td>\n</tr>\n<tr>\n<td>API access</td>\n<td>No</td>\n<td>Yes (REST + MCP)</td>\n</tr>\n<tr>\n<td>Multi-tenant</td>\n<td>No</td>\n<td>Yes (minds)</td>\n</tr>\n<tr>\n<td>Custom categories</td>\n<td>No</td>\n<td>Yes (8 categories)</td>\n</tr>\n<tr>\n<td>Full-text search</td>\n<td>Limited</td>\n<td>FTS5 + semantic</td>\n</tr>\n<tr>\n<td>Self-hostable</td>\n<td>No</td>\n<td>Yes</td>\n</tr>\n</tbody></table>\n<h2>What LLMs work with Synapse?</h2>\n<p>Any LLM that can make HTTP calls or use MCP:</p>\n<ul>\n<li>Claude (Anthropic) — via MCP or direct API</li>\n<li>GPT-4 / GPT-3.5 (OpenAI) — via function calling + API</li>\n<li>Gemini (Google) — via function calling + API</li>\n<li>Llama / Mistral (local) — via custom integration</li>\n<li>Any LLM via the Synapse MCP server</li>\n</ul>\n<h2>Do I need to host Synapse myself?</h2>\n<p>No. The hosted version at <a href=\"https://synapse.schaefer.zone\">https://synapse.schaefer.zone</a> is available for\npublic use. Self-hosting is optional (for privacy, customization, or\nair-gapped environments).</p>\n<h2>How much data can I store?</h2>\n<p>There are no hard limits on the hosted version. Typical usage:</p>\n<ul>\n<li>100-1000 memories per mind</li>\n<li>1-10 KB per memory (content field)</li>\n<li>Total: ~10 MB per mind</li>\n</ul>\n<p>For larger scale, self-host.</p>\n<h2>Is my data private?</h2>\n<p>Yes. Each mind is isolated (see <a href=\"/docs/concepts/multi-tenancy\">Multi-Tenancy</a>).\nOther users cannot see your data. The hosting provider (Schäfer Services)\nhas access but does not view user data.</p>\n<p>For maximum privacy, self-host.</p>\n<h2>Can I export my data?</h2>\n<p>Yes. Use <code>GET /memory/mind-export</code> to export all memories as JSON. See\n<a href=\"/docs/guides/backup-restore\">Backup &amp; Restore</a>.</p>\n<h2>What happens if I lose my Mind Key?</h2>\n<p>Mind Keys are shown only once at creation. If lost:</p>\n<ol>\n<li>Login with your email/password to get a JWT</li>\n<li>Create a new mind via <code>POST /minds</code></li>\n<li>Save the new Mind Key</li>\n<li>(Optional) Delete the old mind via <code>DELETE /minds/:id</code></li>\n</ol>\n<p>You cannot recover memories from a mind whose key is lost.</p>\n<h2>Can multiple LLM agents share a mind?</h2>\n<p>Yes. All agents using the same Mind Key share that mind&#39;s data. For\ncoordinated multi-agent work, see <a href=\"/docs/guides/multi-agent-coordination\">Multi-Agent Coordination</a>.</p>\n<h2>Does Synapse work offline?</h2>\n<p>No, Synapse requires an internet connection to the server (either hosted or\nself-hosted). For offline LLMs, run Synapse locally.</p>\n<h2>How fast is memory search?</h2>\n<ul>\n<li>FTS5 keyword search: &lt; 10ms for 1000 memories</li>\n<li>Semantic search: 50-100ms for 1000 memories</li>\n<li>Full recall: &lt; 50ms for 1000 memories</li>\n</ul>\n<p>See <a href=\"/docs/concepts/fts5-search\">FTS5 Search</a> for details.</p>\n<h2>Can I use Synapse without an LLM?</h2>\n<p>Yes. Synapse is a generic memory API. You can use it from any application\nthat benefits from persistent, searchable key-value storage with categories\nand tags.</p>\n<h2>Next Steps</h2>\n<ul>\n<li><a href=\"/docs/getting-started/what-is-synapse\">What is Synapse?</a></li>\n<li><a href=\"/docs/getting-started/quick-start\">Quick Start</a></li>\n<li><a href=\"/docs/faq/api-faq\">API FAQ</a></li>\n</ul>\n","urls":{"html":"/docs/faq/general","text":"/docs/faq/general?format=text","json":"/docs/faq/general?format=json","llm":"/docs/faq/general?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}