Skip to content
VS Code

memoweft for VS Code

io.github.memoweft/memoweft

Portable AI memory as MCP tools: five reads and three controlled writes.

client:VS Code transport:stdio runtime:npm

Install memoweft in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "memoweft-db-path",
      "description": "MEMOWEFT_DB_PATH",
      "password": true
    }
  ],
  "servers": {
    "memoweft": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@memoweft/mcp-server"
      ],
      "env": {
        "MEMOWEFT_DB_PATH": "${input:memoweft-db-path}"
      }
    }
  }
}

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

memoweft in other clients