Skip to content
VS Code

ContinueWith for VS Code

io.github.continuewith-ai/continuewith

Install the ContinueWith AI handoff widget from coding agents (Cursor, Claude Code, Codex).

client:VS Code transport:stdio runtime:npm

Install ContinueWith in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "loop-api-key",
      "description": "LOOP_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "continuewith": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@continuewith/mcp"
      ],
      "env": {
        "LOOP_API_KEY": "${input:loop-api-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

ContinueWith in other clients