Skip to content
VS Code

OMEM for VS Code

io.github.troybrandonc-bit/omem

Memory for AI agents that tracks beliefs over time and surfaces contradictions

client:VS Code transport:stdio runtime:pypi

Install OMEM in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "omem-api-key",
      "description": "OMEM_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "omem-project",
      "description": "OMEM_PROJECT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "omem-base-url",
      "description": "OMEM_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "omem-agent",
      "description": "OMEM_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "omem-user",
      "description": "OMEM_USER",
      "password": true
    }
  ],
  "servers": {
    "omem": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "omem-infrastructure"
      ],
      "env": {
        "OMEM_API_KEY": "${input:omem-api-key}",
        "OMEM_PROJECT": "${input:omem-project}",
        "OMEM_BASE_URL": "${input:omem-base-url}",
        "OMEM_AGENT": "${input:omem-agent}",
        "OMEM_USER": "${input:omem-user}"
      }
    }
  }
}

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

OMEM in other clients