Skip to content
VS Code

asc mcp for VS Code

io.github.pofky/asc-mcp

41 tools to ship an App Store release: metadata, screenshots, builds, TestFlight, IAP, submit.

client:VS Code transport:stdio runtime:npm

Install asc mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "asc-key-id",
      "description": "ASC_KEY_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-issuer-id",
      "description": "ASC_ISSUER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-private-key-path",
      "description": "ASC_PRIVATE_KEY_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "asc-license-key",
      "description": "ASC_LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "asc-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@pofky/asc-mcp"
      ],
      "env": {
        "ASC_KEY_ID": "${input:asc-key-id}",
        "ASC_ISSUER_ID": "${input:asc-issuer-id}",
        "ASC_PRIVATE_KEY_PATH": "${input:asc-private-key-path}",
        "ASC_LICENSE_KEY": "${input:asc-license-key}"
      }
    }
  }
}

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 in other clients