appdex for VS Code
com.app-dex/appdex
iOS App Store revenue & download estimates with confidence labels
client:VS Code
transport:stdio
runtime:npm
Install appdex in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "appdex-api-key",
"description": "APPDEX_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "appdex-api-url",
"description": "APPDEX_API_URL",
"password": true
}
],
"servers": {
"appdex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"appdex-mcp"
],
"env": {
"APPDEX_API_KEY": "${input:appdex-api-key}",
"APPDEX_API_URL": "${input:appdex-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs