storepilot mcp for VS Code
io.github.sonlenef/storepilot-mcp
Run an app portfolio across Google Play and the App Store: vitals, reviews, earnings, releases.
client:VS Code
transport:stdio
runtime:pypi
Install storepilot mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "storepilot-google-credentials",
"description": "STOREPILOT_GOOGLE_CREDENTIALS",
"password": true
},
{
"type": "promptString",
"id": "storepilot-google-reports-bucket",
"description": "STOREPILOT_GOOGLE_REPORTS_BUCKET",
"password": true
},
{
"type": "promptString",
"id": "storepilot-asc-key-path",
"description": "STOREPILOT_ASC_KEY_PATH",
"password": true
},
{
"type": "promptString",
"id": "storepilot-asc-key-id",
"description": "STOREPILOT_ASC_KEY_ID",
"password": true
},
{
"type": "promptString",
"id": "storepilot-asc-issuer-id",
"description": "STOREPILOT_ASC_ISSUER_ID",
"password": true
},
{
"type": "promptString",
"id": "storepilot-asc-vendor-number",
"description": "STOREPILOT_ASC_VENDOR_NUMBER",
"password": true
}
],
"servers": {
"storepilot-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"storepilot"
],
"env": {
"STOREPILOT_GOOGLE_CREDENTIALS": "${input:storepilot-google-credentials}",
"STOREPILOT_GOOGLE_REPORTS_BUCKET": "${input:storepilot-google-reports-bucket}",
"STOREPILOT_ASC_KEY_PATH": "${input:storepilot-asc-key-path}",
"STOREPILOT_ASC_KEY_ID": "${input:storepilot-asc-key-id}",
"STOREPILOT_ASC_ISSUER_ID": "${input:storepilot-asc-issuer-id}",
"STOREPILOT_ASC_VENDOR_NUMBER": "${input:storepilot-asc-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