Skip to content
VS Code

Monet for VS Code

io.github.team-monet/monet

Local-first, state-centric memory for coding agents. MCP server + CLI.

client:VS Code transport:stdio runtime:npm

Install Monet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "monet-storage-dir",
      "description": "MONET_STORAGE_DIR",
      "password": true
    }
  ],
  "servers": {
    "monet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@team-monet/monet"
      ],
      "env": {
        "MONET_STORAGE_DIR": "${input:monet-storage-dir}"
      }
    }
  }
}

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

Monet in other clients