Weasley DeepMind for VS Code
io.github.potatohoney-p/weasley-deepmind
Secure, fragment-based long-term memory for MCP-compatible AI agents.
client:VS Code
transport:stdio
runtime:npm
Install Weasley DeepMind in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "database-url",
"description": "DATABASE_URL",
"password": true
},
{
"type": "promptString",
"id": "weasley-deepmind-auto-migrate",
"description": "WEASLEY_DEEPMIND_AUTO_MIGRATE",
"password": true
},
{
"type": "promptString",
"id": "embedding-api-key",
"description": "EMBEDDING_API_KEY",
"password": true
}
],
"servers": {
"weasley-deepmind": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"weasley-deepmind"
],
"env": {
"DATABASE_URL": "${input:database-url}",
"WEASLEY_DEEPMIND_AUTO_MIGRATE": "${input:weasley-deepmind-auto-migrate}",
"EMBEDDING_API_KEY": "${input:embedding-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