strata for VS Code
io.github.agenerationforwordz-tech/strata
Self-hosted AI memory server. Persistent memory on your hardware, not the cloud.
client:VS Code
transport:stdio
runtime:npm
Install strata in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "strata-url",
"description": "STRATA_URL",
"password": true
},
{
"type": "promptString",
"id": "strata-api-key",
"description": "STRATA_API_KEY",
"password": true
}
],
"servers": {
"strata": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"strata-mcp-server"
],
"env": {
"STRATA_URL": "${input:strata-url}",
"STRATA_API_KEY": "${input:strata-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