Skip to content
VS Code

gpc mcp server for VS Code

io.github.muhammetali/gpc-mcp-server

Google Play Console MCP Server for AI coding agents

client:VS Code transport:stdio runtime:npm

Install gpc mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-play-service-account-json",
      "description": "GOOGLE_PLAY_SERVICE_ACCOUNT_JSON",
      "password": true
    },
    {
      "type": "promptString",
      "id": "google-play-package-name",
      "description": "GOOGLE_PLAY_PACKAGE_NAME",
      "password": true
    }
  ],
  "servers": {
    "gpc-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "gpc-mcp-server"
      ],
      "env": {
        "GOOGLE_PLAY_SERVICE_ACCOUNT_JSON": "${input:google-play-service-account-json}",
        "GOOGLE_PLAY_PACKAGE_NAME": "${input:google-play-package-name}"
      }
    }
  }
}

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

gpc mcp server in other clients