Skip to content
VS Code

telemem for VS Code

io.github.teleai-uagi/telemem

Long-term and multimodal memory for AI agents - character-aware, mem0-compatible, fully-local option

client:VS Code transport:stdio runtime:pypi

Install telemem in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "telemem-config",
      "description": "TELEMEM_CONFIG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "telemem-default-user-id",
      "description": "TELEMEM_DEFAULT_USER_ID",
      "password": true
    }
  ],
  "servers": {
    "telemem": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "telemem"
      ],
      "env": {
        "OPENAI_API_KEY": "${input:openai-api-key}",
        "TELEMEM_CONFIG": "${input:telemem-config}",
        "TELEMEM_DEFAULT_USER_ID": "${input:telemem-default-user-id}"
      }
    }
  }
}

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

telemem in other clients