Skip to content
VS Code

RCLL for VS Code

ai.rcll/fleet-memory

Self-hosted shared memory for a team of AI agents. Rooms, L0-L3 depth, no LLM on the read path.

client:VS Code transport:stdio runtime:npm

Install RCLL in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fleet-url",
      "description": "FLEET_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fleet-bank",
      "description": "FLEET_BANK",
      "password": true
    }
  ],
  "servers": {
    "fleet-memory": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fleet-memory-mcp"
      ],
      "env": {
        "FLEET_URL": "${input:fleet-url}",
        "FLEET_BANK": "${input:fleet-bank}"
      }
    }
  }
}

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

RCLL in other clients