yggdrasil for VS Code
io.github.vondervuflya/yggdrasil
One shared, durable memory for your AI coding agents — local-first, zero-dependency.
client:VS Code
transport:stdio
runtime:pypi
Install yggdrasil in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ygg-engine-url",
"description": "YGG_ENGINE_URL",
"password": true
},
{
"type": "promptString",
"id": "ygg-engine-token",
"description": "YGG_ENGINE_TOKEN",
"password": true
}
],
"servers": {
"yggdrasil": {
"type": "stdio",
"command": "uvx",
"args": [
"yggdrasil-memory"
],
"env": {
"YGG_ENGINE_URL": "${input:ygg-engine-url}",
"YGG_ENGINE_TOKEN": "${input:ygg-engine-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs