Skip to content
VS Code

Lians Agent Memory for VS Code

io.github.ebeirne/lians

Bitemporal memory for AI agents with point-in-time recall and tamper-evident audit history.

client:VS Code transport:stdio runtime:pypi

Install Lians Agent Memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "lians-url",
      "description": "LIANS_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lians-api-key",
      "description": "LIANS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lians-agent-id",
      "description": "LIANS_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lians-local-db",
      "description": "LIANS_LOCAL_DB",
      "password": true
    },
    {
      "type": "promptString",
      "id": "lians-namespace",
      "description": "LIANS_NAMESPACE",
      "password": true
    }
  ],
  "servers": {
    "lians": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "lians-sdk"
      ],
      "env": {
        "LIANS_URL": "${input:lians-url}",
        "LIANS_API_KEY": "${input:lians-api-key}",
        "LIANS_AGENT_ID": "${input:lians-agent-id}",
        "LIANS_LOCAL_DB": "${input:lians-local-db}",
        "LIANS_NAMESPACE": "${input:lians-namespace}"
      }
    }
  }
}

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

Lians Agent Memory in other clients