Skip to content
VS Code

genesys memory for VS Code

io.github.astrix-labs/genesys-memory

Open-source causal memory for AI agents: persistent, explainable, MCP-native memory (13 tools).

client:VS Code transport:stdio runtime:pypi

Install genesys memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "genesys-embedder",
      "description": "GENESYS_EMBEDDER",
      "password": true
    }
  ],
  "servers": {
    "genesys-memory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "genesys-memory"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "GENESYS_EMBEDDER": "${input:genesys-embedder}"
      }
    }
  }
}

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

genesys memory in other clients