Skip to content
VS Code

photo organizer for VS Code

io.github.expertvagabond/photo-organizer

AI-powered organization for Google Photos and Drive - auto-organize, find duplicates, create albums

client:VS Code transport:stdio runtime:npm

Install photo organizer in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "photo-scripts-path",
      "description": "PHOTO_SCRIPTS_PATH",
      "password": true
    }
  ],
  "servers": {
    "photo-organizer": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "photo-organizer-mcp"
      ],
      "env": {
        "PHOTO_SCRIPTS_PATH": "${input:photo-scripts-path}"
      }
    }
  }
}

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

photo organizer in other clients