app store connect mcp for VS Code
io.github.gjeltep/app-store-connect-mcp
Interact with Apple's App Store Connect API
client:VS Code
transport:stdio
runtime:pypi
Install app store connect mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "app-store-key-id",
"description": "APP_STORE_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "app-store-issuer-id",
"description": "APP_STORE_ISSUER_ID",
"password": true
},
{
"type": "promptString",
"id": "app-store-private-key-path",
"description": "APP_STORE_PRIVATE_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "app-store-app-id",
"description": "APP_STORE_APP_ID",
"password": true
},
{
"type": "promptString",
"id": "app-store-key-type",
"description": "APP_STORE_KEY_TYPE",
"password": true
},
{
"type": "promptString",
"id": "app-store-scope",
"description": "APP_STORE_SCOPE",
"password": true
},
{
"type": "promptString",
"id": "app-store-subject",
"description": "APP_STORE_SUBJECT",
"password": true
}
],
"servers": {
"app-store-connect-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"app-store-connect-mcp"
],
"env": {
"APP_STORE_KEY_ID": "${input:app-store-key-id}",
"APP_STORE_ISSUER_ID": "${input:app-store-issuer-id}",
"APP_STORE_PRIVATE_KEY_PATH": "${input:app-store-private-key-path}",
"APP_STORE_APP_ID": "${input:app-store-app-id}",
"APP_STORE_KEY_TYPE": "${input:app-store-key-type}",
"APP_STORE_SCOPE": "${input:app-store-scope}",
"APP_STORE_SUBJECT": "${input:app-store-subject}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs