{"title":"Continue.dev에서 MCP","slug":"continue","category":"mcp","summary":"Synapse를 Continue.dev에 연결 — VS Code 및 JetBrains용 오픈 소스 AI 코딩 어시스턴트.","audience":["human"],"tags":["mcp","continue","vscode","jetbrains"],"difficulty":"intermediate","updated":"2026-06-27","word_count":200,"read_minutes":1,"lang":"ko","translated":true,"requested_lang":"ko","content_markdown":"\n# Continue.dev에서 MCP\n\nContinue.dev는 VS Code 및 JetBrains IDE용 오픈 소스 AI 코딩 어시스턴트입니다.\nSynapse MCP를 사용하면 Continue가 세션 간에 영구 메모리를 얻습니다.\n\n## 사전 요구 사항\n\n- VS Code 또는 JetBrains IDE\n- Continue.dev 확장 설치\n- Node.js 18+\n- 귀하의 Synapse Mind Key\n\n## 설정\n\n### 1단계: Continue 구성 열기\n\nVS Code 또는 JetBrains에서:\n\n1. Continue 확장 사이드바 열기\n2. 기어 아이콘 클릭 → \"Open config.json\"\n\n또는 `~/.continue/config.json`을 직접 편집하십시오.\n\n### 2단계: Synapse MCP 서버 추가\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\nVS Code 창 다시 로드 (Cmd+Shift+P → \"Reload Window\") 또는 IDE 재시작.\n\n## 작동 확인\n\nContinue 채팅에서:\n\n```\nrecall all my memories\n```\n\nContinue이 `memory_recall`을 호출하고 저장된 메모리로 응답해야 합니다.\n\n## 일반적인 패턴\n\n### 프로젝트 컨텍스트\n\n```\nrecalling project context for this codebase\n```\n\nContinue이 `memory_recall`을 호출하여 프로젝트 메모리를 보고, 중단한 곳에서\n작업을 계속합니다.\n\n### 코드 리뷰 패턴\n\n```\nsearch memories: \"code review checklist\"\n```\n\nContinue이 저장된 코드 리뷰 패턴을 찾아 적용합니다.\n\n### 페어 프로그래밍 메모리\n\n```\nstore this: \"User prefers functional style over OOP for this project.\nDecided 2026-06-27.\"\n```\n\nContinue이 `preference` 메모리로 저장합니다.\n\n## 문제 해결\n\n### MCP 서버가 연결되지 않음\n\n1. `~/.continue/config.json`이 유효한 JSON인지 확인\n2. Node.js 확인: `node --version`\n3. Continue의 출력 패널 확인 (View → Output → Continue)\n4. IDE 재시작\n\n### 도구가 나타나지 않음\n\n- Continue 버전이 MCP를 지원하는지 확인 (≥ 0.9.x)\n- 구성에서 `SYNAPSE_MIND_KEY` 환경 변수가 설정되었는지 확인\n- Continue의 로그에서 MCP 오류 확인\n\n## 다음 단계\n\n- [Claude Desktop 설정](/docs/mcp/claude-desktop)\n- [커스텀 MCP 클라이언트](/docs/mcp/custom-client)\n","content_html":"<h1>Continue.dev에서 MCP</h1>\n<p>Continue.dev는 VS Code 및 JetBrains IDE용 오픈 소스 AI 코딩 어시스턴트입니다.\nSynapse MCP를 사용하면 Continue가 세션 간에 영구 메모리를 얻습니다.</p>\n<h2>사전 요구 사항</h2>\n<ul>\n<li>VS Code 또는 JetBrains IDE</li>\n<li>Continue.dev 확장 설치</li>\n<li>Node.js 18+</li>\n<li>귀하의 Synapse Mind Key</li>\n</ul>\n<h2>설정</h2>\n<h3>1단계: Continue 구성 열기</h3>\n<p>VS Code 또는 JetBrains에서:</p>\n<ol>\n<li>Continue 확장 사이드바 열기</li>\n<li>기어 아이콘 클릭 → &quot;Open config.json&quot;</li>\n</ol>\n<p>또는 <code>~/.continue/config.json</code>을 직접 편집하십시오.</p>\n<h3>2단계: Synapse MCP 서버 추가</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>을 호출하고 저장된 메모리로 응답해야 합니다.</p>\n<h2>일반적인 패턴</h2>\n<h3>프로젝트 컨텍스트</h3>\n<pre><code class=\"hljs language-plaintext\">recalling project context for this codebase</code></pre><p>Continue이 <code>memory_recall</code>을 호출하여 프로젝트 메모리를 보고, 중단한 곳에서\n작업을 계속합니다.</p>\n<h3>코드 리뷰 패턴</h3>\n<pre><code class=\"hljs language-plaintext\">search memories: &quot;code review checklist&quot;</code></pre><p>Continue이 저장된 코드 리뷰 패턴을 찾아 적용합니다.</p>\n<h3>페어 프로그래밍 메모리</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이 <code>preference</code> 메모리로 저장합니다.</p>\n<h2>문제 해결</h2>\n<h3>MCP 서버가 연결되지 않음</h3>\n<ol>\n<li><code>~/.continue/config.json</code>이 유효한 JSON인지 확인</li>\n<li>Node.js 확인: <code>node --version</code></li>\n<li>Continue의 출력 패널 확인 (View → Output → Continue)</li>\n<li>IDE 재시작</li>\n</ol>\n<h3>도구가 나타나지 않음</h3>\n<ul>\n<li>Continue 버전이 MCP를 지원하는지 확인 (≥ 0.9.x)</li>\n<li>구성에서 <code>SYNAPSE_MIND_KEY</code> 환경 변수가 설정되었는지 확인</li>\n<li>Continue의 로그에서 MCP 오류 확인</li>\n</ul>\n<h2>다음 단계</h2>\n<ul>\n<li><a href=\"/docs/mcp/claude-desktop\">Claude Desktop 설정</a></li>\n<li><a href=\"/docs/mcp/custom-client\">커스텀 MCP 클라이언트</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"]}