Toon Memory for VS Code
io.github.luiggival08/toon-memory
Offline persistent memory for AI coding agents — 35 tools, 80% fewer calls, no LLM
client:VS Code
transport:stdio
runtime:npm
Install Toon Memory in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "toon-memory-key",
"description": "TOON_MEMORY_KEY",
"password": true
},
{
"type": "promptString",
"id": "toon-memory-capture",
"description": "TOON_MEMORY_CAPTURE",
"password": true
},
{
"type": "promptString",
"id": "toon-memory-session-id",
"description": "TOON_MEMORY_SESSION_ID",
"password": true
},
{
"type": "promptString",
"id": "toon-memory-branch",
"description": "TOON_MEMORY_BRANCH",
"password": true
},
{
"type": "promptString",
"id": "toon-memory-no-session",
"description": "TOON_MEMORY_NO_SESSION",
"password": true
},
{
"type": "promptString",
"id": "github-token",
"description": "GITHUB_TOKEN",
"password": true
}
],
"servers": {
"toon-memory": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"toon-memory"
],
"env": {
"TOON_MEMORY_KEY": "${input:toon-memory-key}",
"TOON_MEMORY_CAPTURE": "${input:toon-memory-capture}",
"TOON_MEMORY_SESSION_ID": "${input:toon-memory-session-id}",
"TOON_MEMORY_BRANCH": "${input:toon-memory-branch}",
"TOON_MEMORY_NO_SESSION": "${input:toon-memory-no-session}",
"GITHUB_TOKEN": "${input:github-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs