memdata for VS Code
io.github.thelabvenice/memdata
Persistent memory for AI agents. Store context, retrieve it semantically.
client:VS Code
transport:stdio
runtime:npm
Install memdata in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "memdata-api-key",
"description": "MEMDATA_API_KEY",
"password": true
}
],
"servers": {
"memdata": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"memdata-mcp"
],
"env": {
"MEMDATA_API_KEY": "${input:memdata-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs