Skip to content
VS Code

asc mcp server for VS Code

io.github.muhammetali/asc-mcp-server

App Store Connect MCP Server for AI coding agents

client:VS Code transport:stdio runtime:npm

Install asc mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "app-store-connect-key-id",
      "description": "APP_STORE_CONNECT_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "app-store-connect-issuer-id",
      "description": "APP_STORE_CONNECT_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "app-store-connect-p8-path",
      "description": "APP_STORE_CONNECT_P8_PATH",
      "password": true
    }
  ],
  "servers": {
    "asc-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@muhammetali/asc-mcp-server"
      ],
      "env": {
        "APP_STORE_CONNECT_KEY_ID": "${input:app-store-connect-key-id}",
        "APP_STORE_CONNECT_ISSUER_ID": "${input:app-store-connect-issuer-id}",
        "APP_STORE_CONNECT_P8_PATH": "${input:app-store-connect-p8-path}"
      }
    }
  }
}

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

asc mcp server in other clients