{"title":"MCP ใน Continue.dev","slug":"continue","category":"mcp","summary":"เชื่อมต่อ Synapse กับ Continue.dev — AI coding assistant แบบ open-source สำหรับ VS Code และ JetBrains","audience":["human"],"tags":["mcp","continue","vscode","jetbrains"],"difficulty":"intermediate","updated":"2026-06-27","word_count":188,"read_minutes":1,"lang":"th","translated":true,"requested_lang":"th","content_markdown":"\n# MCP ใน Continue.dev\n\nContinue.dev เป็น AI coding assistant แบบ open-source สำหรับ VS Code และ JetBrains IDE ด้วย Synapse MCP, Continue ได้ memory ถาวรข้าม session\n\n## ข้อกำหนดเบื้องต้น\n\n- VS Code หรือ JetBrains IDE\n- ติดตั้ง Continue.dev extension\n- Node.js 18+\n- Synapse Mind Key ของคุณ\n\n## การตั้งค่า\n\n### ขั้นตอนที่ 1: เปิด Continue Config\n\nใน VS Code หรือ JetBrains:\n\n1. เปิด Continue extension sidebar\n2. คลิกไอคอน gear → \"Open config.json\"\n\nหรือแก้ไข `~/.continue/config.json` โดยตรง\n\n### ขั้นตอนที่ 2: เพิ่ม 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### ขั้นตอนที่ 3: โหลด Continue ใหม่\n\nโหลดหน้าต่าง VS Code (Cmd+Shift+P → \"Reload Window\") หรือรีสตาร์ท IDE ของคุณ\n\n## ตรวจสอบว่าทำงาน\n\nในแช็ต Continue:\n\n```\nrecall all my memories\n```\n\nContinue ควรเรียก `memory_recall` และตอบกลับด้วย memory ที่เก็บไว้ของคุณ\n\n## รูปแบบทั่วไป\n\n### Context โปรเจกต์\n\n```\nrecalling project context for this codebase\n```\n\nContinue เรียก `memory_recall`, เห็น memory โปรเจกต์ของคุณ และทำงานต่อจากที่ค้างไว้\n\n### รูปแบบ code review\n\n```\nsearch memories: \"code review checklist\"\n```\n\nContinue หารูปแบบ code review ที่เก็บไว้ของคุณและปรับใช้\n\n### Memory pair programming\n\n```\nstore this: \"User prefers functional style over OOP for this project.\nDecided 2026-06-27.\"\n```\n\nContinue เก็บเป็น memory `preference`\n\n## การแก้ปัญหา\n\n### MCP server เชื่อมต่อไม่ได้\n\n1. ตรวจ `~/.continue/config.json` เป็น JSON ที่ถูกต้อง\n2. ตรวจ Node.js: `node --version`\n3. ตรวจ output panel ของ Continue (View → Output → Continue)\n4. รีสตาร์ท IDE\n\n### tool ไม่ปรากฏ\n\n- ตรวจเวอร์ชัน Continue รองรับ MCP (≥ 0.9.x)\n- ตรวจ env var `SYNAPSE_MIND_KEY` ตั้งใน config\n- หา error MCP ใน log ของ Continue\n\n## ขั้นตอนถัดไป\n\n- [Claude Desktop Setup](/docs/mcp/claude-desktop)\n- [Custom MCP Client](/docs/mcp/custom-client)\n","content_html":"<h1>MCP ใน Continue.dev</h1>\n<p>Continue.dev เป็น AI coding assistant แบบ open-source สำหรับ VS Code และ JetBrains IDE ด้วย Synapse MCP, Continue ได้ memory ถาวรข้าม session</p>\n<h2>ข้อกำหนดเบื้องต้น</h2>\n<ul>\n<li>VS Code หรือ JetBrains IDE</li>\n<li>ติดตั้ง Continue.dev extension</li>\n<li>Node.js 18+</li>\n<li>Synapse Mind Key ของคุณ</li>\n</ul>\n<h2>การตั้งค่า</h2>\n<h3>ขั้นตอนที่ 1: เปิด Continue Config</h3>\n<p>ใน VS Code หรือ JetBrains:</p>\n<ol>\n<li>เปิด Continue extension sidebar</li>\n<li>คลิกไอคอน gear → &quot;Open config.json&quot;</li>\n</ol>\n<p>หรือแก้ไข <code>~/.continue/config.json</code> โดยตรง</p>\n<h3>ขั้นตอนที่ 2: เพิ่ม 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>ขั้นตอนที่ 3: โหลด Continue ใหม่</h3>\n<p>โหลดหน้าต่าง VS Code (Cmd+Shift+P → &quot;Reload Window&quot;) หรือรีสตาร์ท IDE ของคุณ</p>\n<h2>ตรวจสอบว่าทำงาน</h2>\n<p>ในแช็ต Continue:</p>\n<pre><code class=\"hljs language-plaintext\">recall all my memories</code></pre><p>Continue ควรเรียก <code>memory_recall</code> และตอบกลับด้วย memory ที่เก็บไว้ของคุณ</p>\n<h2>รูปแบบทั่วไป</h2>\n<h3>Context โปรเจกต์</h3>\n<pre><code class=\"hljs language-plaintext\">recalling project context for this codebase</code></pre><p>Continue เรียก <code>memory_recall</code>, เห็น memory โปรเจกต์ของคุณ และทำงานต่อจากที่ค้างไว้</p>\n<h3>รูปแบบ code review</h3>\n<pre><code class=\"hljs language-plaintext\">search memories: &quot;code review checklist&quot;</code></pre><p>Continue หารูปแบบ code review ที่เก็บไว้ของคุณและปรับใช้</p>\n<h3>Memory 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 เก็บเป็น memory <code>preference</code></p>\n<h2>การแก้ปัญหา</h2>\n<h3>MCP server เชื่อมต่อไม่ได้</h3>\n<ol>\n<li>ตรวจ <code>~/.continue/config.json</code> เป็น JSON ที่ถูกต้อง</li>\n<li>ตรวจ Node.js: <code>node --version</code></li>\n<li>ตรวจ output panel ของ Continue (View → Output → Continue)</li>\n<li>รีสตาร์ท IDE</li>\n</ol>\n<h3>tool ไม่ปรากฏ</h3>\n<ul>\n<li>ตรวจเวอร์ชัน Continue รองรับ MCP (≥ 0.9.x)</li>\n<li>ตรวจ env var <code>SYNAPSE_MIND_KEY</code> ตั้งใน config</li>\n<li>หา error MCP ใน log ของ Continue</li>\n</ul>\n<h2>ขั้นตอนถัดไป</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"]}