shipkit for VS Code
io.github.readmigo/shipkit
Unified app publishing MCP Server for Google Play, App Store, and 10+ Chinese stores
client:VS Code
transport:stdio
runtime:npm
Install shipkit in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "shipkit-api-key",
"description": "SHIPKIT_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "shipkit-db-path",
"description": "SHIPKIT_DB_PATH",
"password": true
}
],
"servers": {
"shipkit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@readmigo/shipkit-mcp"
],
"env": {
"SHIPKIT_API_KEY": "${input:shipkit-api-key}",
"SHIPKIT_DB_PATH": "${input:shipkit-db-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs