Skip to content
VS Code

Cambium for VS Code

io.github.jarmstrong158/cambium

Knowledge-lifecycle MCP: turn agent work into memory, recall it across projects, promote to org.

client:VS Code transport:stdio runtime:pypi

Install Cambium in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cambium-repo",
      "description": "CAMBIUM_REPO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cambium-agent-id",
      "description": "CAMBIUM_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cambium-org-repo",
      "description": "CAMBIUM_ORG_REPO",
      "password": true
    }
  ],
  "servers": {
    "cambium": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "cambium-mcp"
      ],
      "env": {
        "CAMBIUM_REPO": "${input:cambium-repo}",
        "CAMBIUM_AGENT_ID": "${input:cambium-agent-id}",
        "CAMBIUM_ORG_REPO": "${input:cambium-org-repo}"
      }
    }
  }
}

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

Cambium in other clients