Skip to content
VS Code

clude for VS Code

io.github.sebbsssss/clude

Portable agent memory anchored on Solana. Local SQLite + vector recall, open export.

client:VS Code transport:stdio runtime:npm

Install clude in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "cortex-api-key",
      "description": "CORTEX_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "cortex-host-url",
      "description": "CORTEX_HOST_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clude-wallet",
      "description": "CLUDE_WALLET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "clude-agent-name",
      "description": "CLUDE_AGENT_NAME",
      "password": true
    }
  ],
  "servers": {
    "clude": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@clude/sdk"
      ],
      "env": {
        "CORTEX_API_KEY": "${input:cortex-api-key}",
        "CORTEX_HOST_URL": "${input:cortex-host-url}",
        "CLUDE_WALLET": "${input:clude-wallet}",
        "CLUDE_AGENT_NAME": "${input:clude-agent-name}"
      }
    }
  }
}

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

clude in other clients