{"title":"MCP in Continue.dev","slug":"continue","category":"mcp","summary":"Synapse mit Continue.dev verbinden — Open-Source-AI-Coding-Assistent für VS Code und JetBrains.","audience":["human"],"tags":["mcp","continue","vscode","jetbrains"],"difficulty":"intermediate","updated":"2026-06-27","word_count":192,"read_minutes":1,"lang":"de","translated":true,"requested_lang":"de","content_markdown":"\n# MCP in Continue.dev\n\nContinue.dev ist ein Open-Source-AI-Coding-Assistent für VS Code und JetBrains-\nIDEs. Mit Synapse MCP erhält Continue persistenten Memory über Sessions hinweg.\n\n## Voraussetzungen\n\n- VS Code oder JetBrains-IDE\n- Continue.dev-Erweiterung installiert\n- Node.js 18+\n- Dein Synapse Mind Key\n\n## Setup\n\n### Schritt 1: Continue-Config öffnen\n\nIn VS Code oder JetBrains:\n\n1. Continue-Erweiterungs-Seitenleiste öffnen\n2. Zahnrad-Icon klicken → „Open config.json\"\n\nOder `~/.continue/config.json` direkt editieren.\n\n### Schritt 2: Synapse-MCP-Server hinzufügen\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### Schritt 3: Continue neu laden\n\nVS-Code-Fenster neu laden (Cmd+Shift+P → „Reload Window\") oder IDE neu starten.\n\n## Funktions-Verifikation\n\nIm Continue-Chat:\n\n```\nrecall all my memories\n```\n\nContinue sollte `memory_recall` aufrufen und mit deinen gespeicherten Memories\nantworten.\n\n## Häufige Patterns\n\n### Projektkontext\n\n```\nrecalling project context for this codebase\n```\n\nContinue ruft `memory_recall` auf, sieht deine Projekt-Memories und setzt die\nArbeit dort fort, wo du aufgehört hast.\n\n### Code-Review-Patterns\n\n```\nsearch memories: \"code review checklist\"\n```\n\nContinue findet deine gespeicherten Code-Review-Patterns und wendet sie an.\n\n### Pair-Programming-Memory\n\n```\nstore this: \"User prefers functional style over OOP for this project.\nDecided 2026-06-27.\"\n```\n\nContinue speichert es als `preference`-Memory.\n\n## Troubleshooting\n\n### MCP-Server verbindet nicht\n\n1. `~/.continue/config.json` auf valides JSON prüfen\n2. Node.js verifizieren: `node --version`\n3. Continue-Output-Panel prüfen (View → Output → Continue)\n4. IDE neu starten\n\n### Tools erscheinen nicht\n\n- Verifizieren, dass Continue-Version MCP unterstützt (≥ 0.9.x)\n- `SYNAPSE_MIND_KEY`-Env-Var in Config gesetzt prüfen\n- In Continue-Logs nach MCP-Fehlern suchen\n\n## Nächste Schritte\n\n- [Claude-Desktop-Setup](/docs/mcp/claude-desktop)\n- [Custom-MCP-Client](/docs/mcp/custom-client)\n","content_html":"<h1>MCP in Continue.dev</h1>\n<p>Continue.dev ist ein Open-Source-AI-Coding-Assistent für VS Code und JetBrains-\nIDEs. Mit Synapse MCP erhält Continue persistenten Memory über Sessions hinweg.</p>\n<h2>Voraussetzungen</h2>\n<ul>\n<li>VS Code oder JetBrains-IDE</li>\n<li>Continue.dev-Erweiterung installiert</li>\n<li>Node.js 18+</li>\n<li>Dein Synapse Mind Key</li>\n</ul>\n<h2>Setup</h2>\n<h3>Schritt 1: Continue-Config öffnen</h3>\n<p>In VS Code oder JetBrains:</p>\n<ol>\n<li>Continue-Erweiterungs-Seitenleiste öffnen</li>\n<li>Zahnrad-Icon klicken → „Open config.json&quot;</li>\n</ol>\n<p>Oder <code>~/.continue/config.json</code> direkt editieren.</p>\n<h3>Schritt 2: Synapse-MCP-Server hinzufügen</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>Schritt 3: Continue neu laden</h3>\n<p>VS-Code-Fenster neu laden (Cmd+Shift+P → „Reload Window&quot;) oder IDE neu starten.</p>\n<h2>Funktions-Verifikation</h2>\n<p>Im Continue-Chat:</p>\n<pre><code class=\"hljs language-plaintext\">recall all my memories</code></pre><p>Continue sollte <code>memory_recall</code> aufrufen und mit deinen gespeicherten Memories\nantworten.</p>\n<h2>Häufige Patterns</h2>\n<h3>Projektkontext</h3>\n<pre><code class=\"hljs language-plaintext\">recalling project context for this codebase</code></pre><p>Continue ruft <code>memory_recall</code> auf, sieht deine Projekt-Memories und setzt die\nArbeit dort fort, wo du aufgehört hast.</p>\n<h3>Code-Review-Patterns</h3>\n<pre><code class=\"hljs language-plaintext\">search memories: &quot;code review checklist&quot;</code></pre><p>Continue findet deine gespeicherten Code-Review-Patterns und wendet sie an.</p>\n<h3>Pair-Programming-Memory</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 speichert es als <code>preference</code>-Memory.</p>\n<h2>Troubleshooting</h2>\n<h3>MCP-Server verbindet nicht</h3>\n<ol>\n<li><code>~/.continue/config.json</code> auf valides JSON prüfen</li>\n<li>Node.js verifizieren: <code>node --version</code></li>\n<li>Continue-Output-Panel prüfen (View → Output → Continue)</li>\n<li>IDE neu starten</li>\n</ol>\n<h3>Tools erscheinen nicht</h3>\n<ul>\n<li>Verifizieren, dass Continue-Version MCP unterstützt (≥ 0.9.x)</li>\n<li><code>SYNAPSE_MIND_KEY</code>-Env-Var in Config gesetzt prüfen</li>\n<li>In Continue-Logs nach MCP-Fehlern suchen</li>\n</ul>\n<h2>Nächste Schritte</h2>\n<ul>\n<li><a href=\"/docs/mcp/claude-desktop\">Claude-Desktop-Setup</a></li>\n<li><a href=\"/docs/mcp/custom-client\">Custom-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"]}