agent memory os for VS Code
io.github.yamantaka520/agent-memory-os
Local-first memory engine for AI-agent teams: team/project ACL, recall, and federated sync.
client:VS Code
transport:stdio
runtime:pypi
Install agent memory os in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agent-memory-agent-id",
"description": "AGENT_MEMORY_AGENT_ID",
"password": true
},
{
"type": "promptString",
"id": "agent-memory-home",
"description": "AGENT_MEMORY_HOME",
"password": true
}
],
"servers": {
"agent-memory-os": {
"type": "stdio",
"command": "uvx",
"args": [
"agent-memory-os"
],
"env": {
"AGENT_MEMORY_AGENT_ID": "${input:agent-memory-agent-id}",
"AGENT_MEMORY_HOME": "${input:agent-memory-home}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs