Skip to content
VS Code

Stellar Memory for VS Code

io.github.sangjun0000/stellar-memory

Persistent AI memory using orbital mechanics. 100% local, zero API keys, MCP-native.

client:VS Code transport:stdio runtime:npm

Install Stellar Memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "stellar-project",
      "description": "STELLAR_PROJECT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stellar-db-path",
      "description": "STELLAR_DB_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stellar-api-port",
      "description": "STELLAR_API_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "stellar-sun-token-budget",
      "description": "STELLAR_SUN_TOKEN_BUDGET",
      "password": true
    }
  ],
  "servers": {
    "stellar-memory": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "stellar-memory"
      ],
      "env": {
        "STELLAR_PROJECT": "${input:stellar-project}",
        "STELLAR_DB_PATH": "${input:stellar-db-path}",
        "STELLAR_API_PORT": "${input:stellar-api-port}",
        "STELLAR_SUN_TOKEN_BUDGET": "${input:stellar-sun-token-budget}"
      }
    }
  }
}

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

Stellar Memory in other clients