appstore connect mcp for VS Code
io.github.ryaker/appstore-connect-mcp
MCP server for Apple Store Connect API integration with OAuth authentication support
client:VS Code
transport:stdio
runtime:npm
Install appstore connect mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apple-key-id",
"description": "APPLE_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "apple-issuer-id",
"description": "APPLE_ISSUER_ID",
"password": true
},
{
"type": "promptString",
"id": "apple-private-key",
"description": "APPLE_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "apple-bundle-id",
"description": "APPLE_BUNDLE_ID",
"password": true
},
{
"type": "promptString",
"id": "apple-app-store-id",
"description": "APPLE_APP_STORE_ID",
"password": true
},
{
"type": "promptString",
"id": "oauth-enabled",
"description": "OAUTH_ENABLED",
"password": true
},
{
"type": "promptString",
"id": "oauth-issuer",
"description": "OAUTH_ISSUER",
"password": true
},
{
"type": "promptString",
"id": "oauth-audience",
"description": "OAUTH_AUDIENCE",
"password": true
},
{
"type": "promptString",
"id": "oauth-jwks-uri",
"description": "OAUTH_JWKS_URI",
"password": true
},
{
"type": "promptString",
"id": "server-url",
"description": "SERVER_URL",
"password": true
}
],
"servers": {
"appstore-connect-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ryaker/appstore-connect-mcp"
],
"env": {
"APPLE_KEY_ID": "${input:apple-key-id}",
"APPLE_ISSUER_ID": "${input:apple-issuer-id}",
"APPLE_PRIVATE_KEY": "${input:apple-private-key}",
"APPLE_BUNDLE_ID": "${input:apple-bundle-id}",
"APPLE_APP_STORE_ID": "${input:apple-app-store-id}",
"OAUTH_ENABLED": "${input:oauth-enabled}",
"OAUTH_ISSUER": "${input:oauth-issuer}",
"OAUTH_AUDIENCE": "${input:oauth-audience}",
"OAUTH_JWKS_URI": "${input:oauth-jwks-uri}",
"SERVER_URL": "${input:server-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs