continuum for VS Code
io.github.pouyahasanamreji/continuum
Shared memory + orchestration for your coding agents. Local-first MCP, vector RAG.
client:VS Code
transport:stdio
runtime:oci
Install continuum in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "orchestrator-db-path",
"description": "ORCHESTRATOR_DB_PATH",
"password": true
},
{
"type": "promptString",
"id": "embedder-url",
"description": "EMBEDDER_URL",
"password": true
},
{
"type": "promptString",
"id": "embedder-model",
"description": "EMBEDDER_MODEL",
"password": true
},
{
"type": "promptString",
"id": "embedder-dim",
"description": "EMBEDDER_DIM",
"password": true
}
],
"servers": {
"continuum": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/pouyahasanamreji/continuum:0.3.0"
],
"env": {
"ORCHESTRATOR_DB_PATH": "${input:orchestrator-db-path}",
"EMBEDDER_URL": "${input:embedder-url}",
"EMBEDDER_MODEL": "${input:embedder-model}",
"EMBEDDER_DIM": "${input:embedder-dim}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs