{"title":"MCP di Continue.dev","slug":"continue","category":"mcp","summary":"Hubungkan Synapse ke Continue.dev — asisten coding AI open-source untuk VS Code dan JetBrains.","audience":["human"],"tags":["mcp","continue","vscode","jetbrains"],"difficulty":"intermediate","updated":"2026-06-27","word_count":219,"read_minutes":1,"lang":"id","translated":true,"requested_lang":"id","content_markdown":"\n# MCP di Continue.dev\n\nContinue.dev adalah asisten coding AI open-source untuk VS Code dan JetBrains\nIDE. Dengan Synapse MCP, Continue mendapatkan memori persisten lintas sesi.\n\n## Prasyarat\n\n- VS Code atau JetBrains IDE\n- Ekstensi Continue.dev terpasang\n- Node.js 18+\n- Mind Key Synapse Anda\n\n## Pengaturan\n\n### Langkah 1: Buka Konfigurasi Continue\n\nDi VS Code atau JetBrains:\n\n1. Buka sidebar ekstensi Continue\n2. Klik ikon gear → \"Open config.json\"\n\nAtau edit `~/.continue/config.json` langsung.\n\n### Langkah 2: Tambahkan Synapse MCP Server\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### Langkah 3: Muat Ulang Continue\n\nMuat ulang jendela VS Code (Cmd+Shift+P → \"Reload Window\") atau mulai ulang IDE Anda.\n\n## Verifikasi Berfungsi\n\nDi chat Continue:\n\n```\nrecall all my memories\n```\n\nContinue harus memanggil `memory_recall` dan merespons dengan memori tersimpan Anda.\n\n## Pola Umum\n\n### Konteks proyek\n\n```\nrecalling project context for this codebase\n```\n\nContinue memanggil `memory_recall`, melihat memori proyek Anda, dan melanjutkan\npekerjaan dari tempat Anda berhenti.\n\n### Pola review kode\n\n```\nsearch memories: \"code review checklist\"\n```\n\nContinue menemukan pola review kode tersimpan Anda dan menerapkannya.\n\n### Memori pair programming\n\n```\nstore this: \"User prefers functional style over OOP for this project.\nDecided 2026-06-27.\"\n```\n\nContinue menyimpannya sebagai memori `preference`.\n\n## Troubleshooting\n\n### MCP server tidak terhubung\n\n1. Periksa `~/.continue/config.json` adalah JSON yang valid\n2. Verifikasi Node.js: `node --version`\n3. Periksa panel output Continue (View → Output → Continue)\n4. Mulai ulang IDE\n\n### Alat tidak muncul\n\n- Verifikasi versi Continue mendukung MCP (≥ 0.9.x)\n- Periksa env var `SYNAPSE_MIND_KEY` diatur dalam konfigurasi\n- Cari error MCP di log Continue\n\n## Langkah Berikutnya\n\n- [Pengaturan Claude Desktop](/docs/mcp/claude-desktop)\n- [Klien MCP Khusus](/docs/mcp/custom-client)\n","content_html":"<h1>MCP di Continue.dev</h1>\n<p>Continue.dev adalah asisten coding AI open-source untuk VS Code dan JetBrains\nIDE. Dengan Synapse MCP, Continue mendapatkan memori persisten lintas sesi.</p>\n<h2>Prasyarat</h2>\n<ul>\n<li>VS Code atau JetBrains IDE</li>\n<li>Ekstensi Continue.dev terpasang</li>\n<li>Node.js 18+</li>\n<li>Mind Key Synapse Anda</li>\n</ul>\n<h2>Pengaturan</h2>\n<h3>Langkah 1: Buka Konfigurasi Continue</h3>\n<p>Di VS Code atau JetBrains:</p>\n<ol>\n<li>Buka sidebar ekstensi Continue</li>\n<li>Klik ikon gear → &quot;Open config.json&quot;</li>\n</ol>\n<p>Atau edit <code>~/.continue/config.json</code> langsung.</p>\n<h3>Langkah 2: Tambahkan Synapse MCP Server</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>Langkah 3: Muat Ulang Continue</h3>\n<p>Muat ulang jendela VS Code (Cmd+Shift+P → &quot;Reload Window&quot;) atau mulai ulang IDE Anda.</p>\n<h2>Verifikasi Berfungsi</h2>\n<p>Di chat Continue:</p>\n<pre><code class=\"hljs language-plaintext\">recall all my memories</code></pre><p>Continue harus memanggil <code>memory_recall</code> dan merespons dengan memori tersimpan Anda.</p>\n<h2>Pola Umum</h2>\n<h3>Konteks proyek</h3>\n<pre><code class=\"hljs language-plaintext\">recalling project context for this codebase</code></pre><p>Continue memanggil <code>memory_recall</code>, melihat memori proyek Anda, dan melanjutkan\npekerjaan dari tempat Anda berhenti.</p>\n<h3>Pola review kode</h3>\n<pre><code class=\"hljs language-plaintext\">search memories: &quot;code review checklist&quot;</code></pre><p>Continue menemukan pola review kode tersimpan Anda dan menerapkannya.</p>\n<h3>Memori pair programming</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 menyimpannya sebagai memori <code>preference</code>.</p>\n<h2>Troubleshooting</h2>\n<h3>MCP server tidak terhubung</h3>\n<ol>\n<li>Periksa <code>~/.continue/config.json</code> adalah JSON yang valid</li>\n<li>Verifikasi Node.js: <code>node --version</code></li>\n<li>Periksa panel output Continue (View → Output → Continue)</li>\n<li>Mulai ulang IDE</li>\n</ol>\n<h3>Alat tidak muncul</h3>\n<ul>\n<li>Verifikasi versi Continue mendukung MCP (≥ 0.9.x)</li>\n<li>Periksa env var <code>SYNAPSE_MIND_KEY</code> diatur dalam konfigurasi</li>\n<li>Cari error MCP di log Continue</li>\n</ul>\n<h2>Langkah Berikutnya</h2>\n<ul>\n<li><a href=\"/docs/mcp/claude-desktop\">Pengaturan Claude Desktop</a></li>\n<li><a href=\"/docs/mcp/custom-client\">Klien MCP Khusus</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"]}