Skip to content
VS Code

appstore screenshots for VS Code

io.github.remoas/appstore-screenshots

Generate professional App Store screenshots by matching any top app's style.

client:VS Code transport:stdio runtime:npm

Install appstore screenshots in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "appstore-screenshots-api-key",
      "description": "APPSTORE_SCREENSHOTS_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "appstore-screenshots": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "appstore-screenshots-mcp"
      ],
      "env": {
        "APPSTORE_SCREENSHOTS_API_KEY": "${input:appstore-screenshots-api-key}"
      }
    }
  }
}

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

appstore screenshots in other clients