app store connect for VS Code
io.github.beautyfree/app-store-connect
App Store Connect API as MCP: apps, TestFlight, subscriptions, localizations, reports. JWT auth.
client:VS Code
transport:stdio
runtime:npm
Install app store connect 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
},
{
"type": "promptString",
"id": "app-store-connect-vendor-number",
"description": "APP_STORE_CONNECT_VENDOR_NUMBER",
"password": true
}
],
"servers": {
"app-store-connect": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-asc"
],
"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}",
"APP_STORE_CONNECT_VENDOR_NUMBER": "${input:app-store-connect-vendor-number}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs