Skip to content
VS Code

shodh memory for VS Code

io.github.varun29ankus/shodh-memory

Cognitive memory for AI agents — semantic search, Hebbian learning, knowledge graphs.

client:VS Code transport:stdio runtime:npm

Install shodh memory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "shodh-api-url",
      "description": "SHODH_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shodh-api-key",
      "description": "SHODH_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "shodh-user-id",
      "description": "SHODH_USER_ID",
      "password": true
    }
  ],
  "servers": {
    "shodh-memory": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@shodh/memory-mcp"
      ],
      "env": {
        "SHODH_API_URL": "${input:shodh-api-url}",
        "SHODH_API_KEY": "${input:shodh-api-key}",
        "SHODH_USER_ID": "${input:shodh-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

shodh memory in other clients