{"title":"MCP in Continue.dev","slug":"continue","category":"mcp","summary":"Verbind Synapse met Continue.dev — open-source AI-code-assistent voor VS Code en JetBrains.","audience":["human"],"tags":["mcp","continue","vscode","jetbrains"],"difficulty":"intermediate","updated":"2026-06-27","word_count":211,"read_minutes":1,"lang":"nl","translated":true,"requested_lang":"nl","content_markdown":"\n# MCP in Continue.dev\n\nContinue.dev is een open-source AI-code-assistent voor VS Code en JetBrains-\nIDE's. Met Synapse MCP krijgt Continue permanent geheugen tussen sessies.\n\n## Vereisten\n\n- VS Code of JetBrains IDE\n- Continue.dev-extensie geïnstalleerd\n- Node.js 18+\n- Uw Synapse Mind Key\n\n## Setup\n\n### Stap 1: Open Continue-configuratie\n\nIn VS Code of JetBrains:\n\n1. Open de Continue-extensie-zijbalk\n2. Klik op het tandwiel-icoon → \"Open config.json\"\n\nOf bewerk `~/.continue/config.json` direct.\n\n### Stap 2: Voeg Synapse MCP-server toe\n\n```json\n{\n  \"mcpServers\": {\n    \"synapse\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"synapse-mcp-api@latest\"],\n      \"env\": {\n        \"SYNAPSE_MIND_KEY\": \"mk_YOUR_MIND_KEY_HERE\",\n        \"SYNAPSE_URL\": \"https://synapse.schaefer.zone\"\n      }\n    }\n  }\n}\n```\n\n### Stap 3: Herlaad Continue\n\nHerlaad het VS Code-venster (Cmd+Shift+P → \"Reload Window\") of herstart uw IDE.\n\n## Verifieer dat het werkt\n\nIn de Continue-chat:\n\n```\nrecall all my memories\n```\n\nContinue zou `memory_recall` moeten aanroepen en reageren met uw opgeslagen herinneringen.\n\n## Veelvoorkomende patronen\n\n### Projectcontext\n\n```\nrecalling project context for this codebase\n```\n\nContinue roept `memory_recall` aan, ziet uw project-herinneringen, en gaat verder\nmet werk waar u gebleven was.\n\n### Code-review-patronen\n\n```\nsearch memories: \"code review checklist\"\n```\n\nContinue vindt uw opgeslagen code-review-patronen en past ze toe.\n\n### Pair-programming-geheugen\n\n```\nstore this: \"User prefers functional style over OOP for this project.\nDecided 2026-06-27.\"\n```\n\nContinue slaat het op als een `preference`-herinnering.\n\n## Troubleshooting\n\n### MCP-server verbindt niet\n\n1. Controleer dat `~/.continue/config.json` geldige JSON is\n2. Verifieer Node.js: `node --version`\n3. Controleer Continue's output-paneel (View → Output → Continue)\n4. Herstart IDE\n\n### Tools verschijnen niet\n\n- Verifieer dat Continue-versie MCP ondersteunt (≥ 0.9.x)\n- Controleer dat `SYNAPSE_MIND_KEY`-env-var is ingesteld in de configuratie\n- Zoek naar MCP-fouten in Continue's logs\n\n## Volgende stappen\n\n- [Claude Desktop-setup](/docs/mcp/claude-desktop)\n- [Aangepaste MCP-client](/docs/mcp/custom-client)\n","content_html":"<h1>MCP in Continue.dev</h1>\n<p>Continue.dev is een open-source AI-code-assistent voor VS Code en JetBrains-\nIDE&#39;s. Met Synapse MCP krijgt Continue permanent geheugen tussen sessies.</p>\n<h2>Vereisten</h2>\n<ul>\n<li>VS Code of JetBrains IDE</li>\n<li>Continue.dev-extensie geïnstalleerd</li>\n<li>Node.js 18+</li>\n<li>Uw Synapse Mind Key</li>\n</ul>\n<h2>Setup</h2>\n<h3>Stap 1: Open Continue-configuratie</h3>\n<p>In VS Code of JetBrains:</p>\n<ol>\n<li>Open de Continue-extensie-zijbalk</li>\n<li>Klik op het tandwiel-icoon → &quot;Open config.json&quot;</li>\n</ol>\n<p>Of bewerk <code>~/.continue/config.json</code> direct.</p>\n<h3>Stap 2: Voeg Synapse MCP-server toe</h3>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;mcpServers&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">{</span>\n    <span class=\"hljs-attr\">&quot;synapse&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">{</span>\n      <span class=\"hljs-attr\">&quot;command&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;npx&quot;</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;args&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">[</span><span class=\"hljs-string\">&quot;-y&quot;</span><span class=\"hljs-punctuation\">,</span> <span class=\"hljs-string\">&quot;synapse-mcp-api@latest&quot;</span><span class=\"hljs-punctuation\">]</span><span class=\"hljs-punctuation\">,</span>\n      <span class=\"hljs-attr\">&quot;env&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">{</span>\n        <span class=\"hljs-attr\">&quot;SYNAPSE_MIND_KEY&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;mk_YOUR_MIND_KEY_HERE&quot;</span><span class=\"hljs-punctuation\">,</span>\n        <span class=\"hljs-attr\">&quot;SYNAPSE_URL&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;https://synapse.schaefer.zone&quot;</span>\n      <span class=\"hljs-punctuation\">}</span>\n    <span class=\"hljs-punctuation\">}</span>\n  <span class=\"hljs-punctuation\">}</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h3>Stap 3: Herlaad Continue</h3>\n<p>Herlaad het VS Code-venster (Cmd+Shift+P → &quot;Reload Window&quot;) of herstart uw IDE.</p>\n<h2>Verifieer dat het werkt</h2>\n<p>In de Continue-chat:</p>\n<pre><code class=\"hljs language-plaintext\">recall all my memories</code></pre><p>Continue zou <code>memory_recall</code> moeten aanroepen en reageren met uw opgeslagen herinneringen.</p>\n<h2>Veelvoorkomende patronen</h2>\n<h3>Projectcontext</h3>\n<pre><code class=\"hljs language-plaintext\">recalling project context for this codebase</code></pre><p>Continue roept <code>memory_recall</code> aan, ziet uw project-herinneringen, en gaat verder\nmet werk waar u gebleven was.</p>\n<h3>Code-review-patronen</h3>\n<pre><code class=\"hljs language-plaintext\">search memories: &quot;code review checklist&quot;</code></pre><p>Continue vindt uw opgeslagen code-review-patronen en past ze toe.</p>\n<h3>Pair-programming-geheugen</h3>\n<pre><code class=\"hljs language-plaintext\">store this: &quot;User prefers functional style over OOP for this project.\nDecided 2026-06-27.&quot;</code></pre><p>Continue slaat het op als een <code>preference</code>-herinnering.</p>\n<h2>Troubleshooting</h2>\n<h3>MCP-server verbindt niet</h3>\n<ol>\n<li>Controleer dat <code>~/.continue/config.json</code> geldige JSON is</li>\n<li>Verifieer Node.js: <code>node --version</code></li>\n<li>Controleer Continue&#39;s output-paneel (View → Output → Continue)</li>\n<li>Herstart IDE</li>\n</ol>\n<h3>Tools verschijnen niet</h3>\n<ul>\n<li>Verifieer dat Continue-versie MCP ondersteunt (≥ 0.9.x)</li>\n<li>Controleer dat <code>SYNAPSE_MIND_KEY</code>-env-var is ingesteld in de configuratie</li>\n<li>Zoek naar MCP-fouten in Continue&#39;s logs</li>\n</ul>\n<h2>Volgende stappen</h2>\n<ul>\n<li><a href=\"/docs/mcp/claude-desktop\">Claude Desktop-setup</a></li>\n<li><a href=\"/docs/mcp/custom-client\">Aangepaste MCP-client</a></li>\n</ul>\n","urls":{"html":"/docs/mcp/continue","text":"/docs/mcp/continue?format=text","json":"/docs/mcp/continue?format=json","llm":"/docs/mcp/continue?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}