Skip to content
VS Code

app publish for VS Code

io.github.mikusnuz/app-publish

MCP server for App Store Connect & Google Play Console — iOS/Android app management

client:VS Code transport:stdio runtime:npm

Install app publish in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apple-key-id",
      "description": "APPLE_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-issuer-id",
      "description": "APPLE_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "apple-p8-path",
      "description": "APPLE_P8_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-service-account-path",
      "description": "GOOGLE_SERVICE_ACCOUNT_PATH",
      "password": true
    }
  ],
  "servers": {
    "app-publish": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "app-publish-mcp"
      ],
      "env": {
        "APPLE_KEY_ID": "${input:apple-key-id}",
        "APPLE_ISSUER_ID": "${input:apple-issuer-id}",
        "APPLE_P8_PATH": "${input:apple-p8-path}",
        "GOOGLE_SERVICE_ACCOUNT_PATH": "${input:google-service-account-path}"
      }
    }
  }
}

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

app publish in other clients