Skip to content
VS Code

TeamMemory for VS Code

io.github.ysydhc/team-memory

Team experience database - let AI accumulate, retrieve and apply team knowledge across chats.

client:VS Code transport:stdio runtime:pypi

Install TeamMemory in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "database-url",
      "description": "DATABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "team-memory-config",
      "description": "TEAM_MEMORY_CONFIG",
      "password": true
    }
  ],
  "servers": {
    "team-memory": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "team_memory"
      ],
      "env": {
        "DATABASE_URL": "${input:database-url}",
        "TEAM_MEMORY_CONFIG": "${input:team-memory-config}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

TeamMemory in other clients