Skip to content
VS Code

Memphora for VS Code

io.github.memphora/memphora

Add persistent memory to AI assistants. Store and recall info across conversations.

client:VS Code transport:stdio runtime:pypi

Install Memphora in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memphora-api-key",
      "description": "MEMPHORA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "memphora-user-id",
      "description": "MEMPHORA_USER_ID",
      "password": true
    }
  ],
  "servers": {
    "memphora": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "memphora-mcp"
      ],
      "env": {
        "MEMPHORA_API_KEY": "${input:memphora-api-key}",
        "MEMPHORA_USER_ID": "${input:memphora-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

Memphora in other clients